mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* feat(auth): add triggering post setting update actions * feat(auth): refactor email backups * fix: add extra logs for backups * fix: specs
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
export interface TriggerPostSettingUpdateActionsDTO {
|
|
updatedSettingName: string
|
|
userUuid: string
|
|
userEmail: string
|
|
unencryptedValue: string | null
|
|
}
|