♻️ Improve notify API

This commit is contained in:
LittleSheep 2024-06-30 11:57:57 +08:00
parent 133bbcc6bc
commit 7e334222ee
2 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,10 @@
<option name="autoReloadType" value="ALL" /> <option name="autoReloadType" value="ALL" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="3fefb2c4-b6f9-466b-a523-53352e8d6f95" name="更改" comment=":bug: Fix request body validation" /> <list default="true" id="3fefb2c4-b6f9-466b-a523-53352e8d6f95" name="更改" comment=":bug: Fix API mapping issue">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pkg/internal/services/notifications.go" beforeDir="false" afterPath="$PROJECT_DIR$/pkg/internal/services/notifications.go" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@ -149,7 +152,6 @@
</option> </option>
</component> </component>
<component name="VcsManagerConfiguration"> <component name="VcsManagerConfiguration">
<MESSAGE value=":bug: Fix avatar and banner APIs" />
<MESSAGE value=":bug: Fix frontend" /> <MESSAGE value=":bug: Fix frontend" />
<MESSAGE value=":card_file_box: Add the status model" /> <MESSAGE value=":card_file_box: Add the status model" />
<MESSAGE value=":bug: Authenticate wrong payload hotfix" /> <MESSAGE value=":bug: Authenticate wrong payload hotfix" />
@ -174,7 +176,8 @@
<MESSAGE value=":bug: Fix disturbable condition" /> <MESSAGE value=":bug: Fix disturbable condition" />
<MESSAGE value=":sparkles: Admin notify all API" /> <MESSAGE value=":sparkles: Admin notify all API" />
<MESSAGE value=":bug: Fix request body validation" /> <MESSAGE value=":bug: Fix request body validation" />
<option name="LAST_COMMIT_MESSAGE" value=":bug: Fix request body validation" /> <MESSAGE value=":bug: Fix API mapping issue" />
<option name="LAST_COMMIT_MESSAGE" value=":bug: Fix API mapping issue" />
</component> </component>
<component name="VgoProject"> <component name="VgoProject">
<settings-migrated>true</settings-migrated> <settings-migrated>true</settings-migrated>

View File

@ -47,12 +47,9 @@ func NewNotification(notification models.Notification) error {
return err return err
} }
go func() { if err := PushNotification(notification); err != nil {
err := PushNotification(notification) return err
if err != nil {
log.Error().Err(err).Msg("Unexpected error occurred during the notification.")
} }
}()
return nil return nil
} }