-
Notifications
You must be signed in to change notification settings - Fork 989
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Init models for permission, service account, and service account key
- Loading branch information
1 parent
3ac98ba
commit 273f422
Showing
4 changed files
with
117 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Schema, model, Types, Document } from 'mongoose'; | ||
|
||
export interface IPermission extends Document { | ||
_id: Types.ObjectId; | ||
name: string; | ||
} | ||
|
||
const permissionSchema = new Schema<IPermission>( | ||
{ | ||
name: { | ||
type: String, | ||
required: true | ||
} | ||
}, | ||
{ | ||
timestamps: true | ||
} | ||
); | ||
|
||
const Permission = model<IPermission>('Permission', permissionSchema); | ||
|
||
export default Permission; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { Schema, model, Types, Document } from 'mongoose'; | ||
|
||
export interface IServiceAccount extends Document { | ||
_id: Types.ObjectId; | ||
name: string; | ||
isActive: boolean; | ||
organization: Types.ObjectId; | ||
createdBy: Types.ObjectId; | ||
publicKey: string; | ||
expiresAt: Date; | ||
} | ||
|
||
const serviceAccountSchema = new Schema<IServiceAccount>( | ||
{ | ||
name: { | ||
type: String, | ||
required: true | ||
}, | ||
isActive: { | ||
type: Boolean, | ||
required: true | ||
}, | ||
organization: { | ||
type: Schema.Types.ObjectId, | ||
ref: 'Organization', | ||
required: true | ||
}, | ||
createdBy: { | ||
type: Schema.Types.ObjectId, | ||
ref: 'User', | ||
required: true | ||
}, | ||
publicKey: { | ||
type: String, | ||
required: true | ||
}, | ||
expiresAt: { | ||
type: Date | ||
} | ||
}, | ||
{ | ||
timestamps: true | ||
} | ||
); | ||
|
||
const ServiceAccount = model<IServiceAccount>('ServiceAcount', serviceAccountSchema); | ||
|
||
export default ServiceAccount; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { Schema, model, Types } from 'mongoose'; | ||
|
||
export interface IServiceAccountKey { | ||
_id: Types.ObjectId; | ||
encryptedKey: string; | ||
nonce: string; | ||
sender: Types.ObjectId; | ||
serviceAccount: Types.ObjectId; | ||
workspace: Types.ObjectId; | ||
} | ||
|
||
const serviceAccountSchema = new Schema<IServiceAccountKey>( | ||
{ | ||
encryptedKey: { | ||
type: String, | ||
required: true | ||
}, | ||
nonce: { | ||
type: String, | ||
required: true | ||
}, | ||
sender: { | ||
type: Schema.Types.ObjectId, | ||
required: true | ||
}, | ||
serviceAccount: { | ||
type: Schema.Types.ObjectId, | ||
ref: 'ServiceAccount', | ||
required: true | ||
}, | ||
workspace: { | ||
type: Schema.Types.ObjectId, | ||
ref: 'Workspace', | ||
required: true | ||
} | ||
}, | ||
{ | ||
timestamps: true | ||
} | ||
); | ||
|
||
const ServiceAccountKey = model<IServiceAccountKey>('ServiceAccountKey', serviceAccountSchema); | ||
|
||
export default ServiceAccountKey; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters