mirror of
https://github.com/standardnotes/server
synced 2026-07-31 14:16:46 -04:00
* fix(auth): refactor setting names into domain core value objects * fix(auth): refactor specs with setting name value objects * feat(auth): move mute sign in emails to a subscription kind of setting * feat(auth): add migration script to change sign in email settings to subscription settings * chore: fix setting name usage * fix(auth): upper casing setting names --------- Co-authored-by: Karol Sójko <[email protected]>
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import { SettingName } from '@standardnotes/settings'
|
|
|
|
export type FindSubscriptionSettingDTO = {
|
|
userUuid: string
|
|
userSubscriptionUuid: string
|
|
subscriptionSettingName: SettingName
|
|
settingUuid?: string
|
|
}
|