Add moderator module with routing, components, and API integration

This commit is contained in:
liosha84
2025-07-17 13:08:23 +03:00
parent c67360273e
commit 70338eae0b
42 changed files with 866 additions and 110 deletions
+1 -35
View File
@@ -6,42 +6,8 @@ export class Tutorial {
published?: boolean;
created?: Date;
modified?: Date;
tobepublished?: boolean;
isEdit?: boolean;
}
export const TutorialColumns = [
{
key: 'isSelected',
type: 'isSelected',
label: '',
},
{
key: 'title',
type: 'text',
label: 'Title',
required: true,
},
{
key: 'published',
type: 'boolean',
label: 'Is Published',
},
{
key: 'created',
type: 'datetime',
label: 'Created Date',
required: true,
},
{
key: 'modified',
type: 'datetime',
label: 'Modified Date',
required: true
},
{
key: 'isEdit',
type: 'isEdit',
label: '',
}
];