🔢 Bumped up ui-typings version

This commit is contained in:
2021-11-13 17:00:08 -08:00
parent a952a7e528
commit e1d8f87a00
4 changed files with 32 additions and 43 deletions

View File

@@ -21,27 +21,22 @@ export default class SettingsService extends Service {
{
name: "settings",
mixins: [DbMixin("settings", Settings)],
settings: {
},
settings: {},
hooks: {},
actions: {
getSettings: {
rest: "GET /getAllSettings",
params: {},
async handler(ctx: Context<{}>) {
getSettings: {
rest: "GET /getAllSettings",
params: {},
async handler(ctx: Context<{}>) {},
},
}
},
saveSettings: {
rest: "POST /saveSettings",
params: {},
async handler(ctx: Context<{}>) {
}
}
saveSettings: {
rest: "POST /saveSettings",
params: {},
async handler(ctx: Context<{}>) {
console.log(ctx.params);
},
},
},
methods: {},
},