mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 13:55:45 +00:00
feat(FE-102) create master data flock and add LTI theme
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
import { BaseMetadata } from "../api-general";
|
||||
|
||||
export type BaseFlock = {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type Flock = BaseMetadata & BaseFlock;
|
||||
|
||||
export type CreateFlockPayload = {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type UpdateFlockPayload = CreateFlockPayload;
|
||||
Reference in New Issue
Block a user