mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
Reorganize model files
This commit is contained in:
parent
15a302943d
commit
74889a71fe
43 changed files with 128 additions and 83 deletions
32
server/models/oauth/oauth-client-interface.ts
Normal file
32
server/models/oauth/oauth-client-interface.ts
Normal file
|
@ -0,0 +1,32 @@
|
|||
import * as Sequelize from 'sequelize'
|
||||
|
||||
export namespace OAuthClientMethods {
|
||||
export type CountTotalCallback = (err: Error, total: number) => void
|
||||
export type CountTotal = (callback: CountTotalCallback) => void
|
||||
|
||||
export type LoadFirstClientCallback = (err: Error, client: OAuthClientInstance) => void
|
||||
export type LoadFirstClient = (callback: LoadFirstClientCallback) => void
|
||||
|
||||
export type GetByIdAndSecret = (clientId, clientSecret) => void
|
||||
}
|
||||
|
||||
export interface OAuthClientClass {
|
||||
countTotal: OAuthClientMethods.CountTotal
|
||||
loadFirstClient: OAuthClientMethods.LoadFirstClient
|
||||
getByIdAndSecret: OAuthClientMethods.GetByIdAndSecret
|
||||
}
|
||||
|
||||
export interface OAuthClientAttributes {
|
||||
clientId: string
|
||||
clientSecret: string
|
||||
grants: string[]
|
||||
redirectUris: string[]
|
||||
}
|
||||
|
||||
export interface OAuthClientInstance extends OAuthClientClass, OAuthClientAttributes, Sequelize.Instance<OAuthClientAttributes> {
|
||||
id: number
|
||||
createdAt: Date
|
||||
updatedAt: Date
|
||||
}
|
||||
|
||||
export interface OAuthClientModel extends OAuthClientClass, Sequelize.Model<OAuthClientInstance, OAuthClientAttributes> {}
|
Loading…
Add table
Add a link
Reference in a new issue