forked from pocketbase/pocketbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated ui/dist and some lint warnings
- Loading branch information
1 parent
ac1fd74
commit bb4a5cf
Showing
47 changed files
with
6,290 additions
and
6,322 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -211,6 +211,9 @@ func TestBaseBindsMailerMessage(t *testing.T) { | |
} | ||
|
||
raw, err := json.Marshal(m) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
expected := `{"from":{"Name":"test_from","Address":"[email protected]"},"to":[{"Name":"test_to1","Address":"[email protected]"},{"Name":"test_to2","Address":"[email protected]"}],"bcc":[{"Name":"test_bcc1","Address":"[email protected]"},{"Name":"test_bcc2","Address":"[email protected]"}],"cc":[{"Name":"test_cc1","Address":"[email protected]"},{"Name":"test_cc2","Address":"[email protected]"}],"subject":"test_subject","html":"test_html","text":"test_text","headers":{"header1":"a","header2":"b"},"attachments":null}` | ||
|
||
|
Oops, something went wrong.