feat: create atproto oauth login
This commit is contained in:
@@ -6,5 +6,6 @@ export enum DataType {
|
||||
BacklinkNote = 'BacklinkNote',
|
||||
RepetitionCard = 'RepetitionCard',
|
||||
History = 'History',
|
||||
UserSettings = 'UserSettings'
|
||||
UserSettings = 'UserSettings',
|
||||
AtprotoSession = 'AtprotoSession'
|
||||
}
|
||||
|
||||
7
src/data/models/AtprotoSession.ts
Normal file
7
src/data/models/AtprotoSession.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DataType } from '@/data/DataType.enum'
|
||||
import { Model } from '@/data/models/Model'
|
||||
|
||||
export interface AtprotoSession extends Model<DataType.AtprotoSession> {
|
||||
did: string
|
||||
handle: string
|
||||
}
|
||||
Reference in New Issue
Block a user