Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 1x 1x 1x 1x 1x | import {Model, DataTypes, HasOneGetAssociationMixin} from 'sequelize';
import {default as sequelize} from '@db';
import {User} from '@models';
/**
* Model class for memberships.
*
* If a user has joined a group,
* this relation is stored in this table
* as a membership.
*
* A membership also defines if the user
* is an admin of the group.
*/
export class Membership extends Model {
/**
* Id the the user.
*/
public readonly userId!: number;
/**
* Id of the group.
*/
public readonly groupId!: number;
/**
* Whether or not the user is an admin of the group.
*/
public isAdmin!: boolean;
/**
* Date when the membership was created.
*/
public readonly createdAt!: Date;
/**
* Date when the membership was last updated.
*/
public readonly updatedAt!: Date;
/**
* Gets the user.
*/
public getUser!: HasOneGetAssociationMixin<User>;
/**
* User of membership.
*
* Exists only if explicitly included in query.
*/
public User?: User;
}
Membership.init(
{
isAdmin: DataTypes.BOOLEAN,
},
{
sequelize,
modelName: 'membership',
},
);
export default Membership;
|