mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-01 08:55:17 +02:00
Set app visibility
This commit is contained in:
parent
ee9aefa4fa
commit
d1738a0a3e
7 changed files with 127 additions and 105 deletions
17
client/src/utility/templateObjects/appTemplate.ts
Normal file
17
client/src/utility/templateObjects/appTemplate.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
import { App, NewApp } from '../../interfaces';
|
||||
|
||||
export const newAppTemplate: NewApp = {
|
||||
name: '',
|
||||
url: '',
|
||||
icon: '',
|
||||
isPublic: true,
|
||||
};
|
||||
|
||||
export const appTemplate: App = {
|
||||
...newAppTemplate,
|
||||
isPinned: false,
|
||||
orderId: 0,
|
||||
id: 0,
|
||||
createdAt: new Date(),
|
||||
updatedAt: new Date(),
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue