mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-25 18:25:03 +00:00
feat: add internal role manager plugin; add role buttons plugin
This commit is contained in:
parent
42f2c91a40
commit
49aa4d2c5e
23 changed files with 732 additions and 1 deletions
16
backend/src/data/entities/RoleButtonsItem.ts
Normal file
16
backend/src/data/entities/RoleButtonsItem.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
|
||||
|
||||
@Entity("role_buttons")
|
||||
export class RoleButtonsItem {
|
||||
@PrimaryGeneratedColumn() id: number;
|
||||
|
||||
@Column() guild_id: string;
|
||||
|
||||
@Column() name: string;
|
||||
|
||||
@Column() channel_id: string;
|
||||
|
||||
@Column() message_id: string;
|
||||
|
||||
@Column() hash: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue