unclean SPARC

This commit is contained in:
STEINNI
2025-08-27 07:03:09 +00:00
commit f308460931
430 changed files with 54426 additions and 0 deletions
@@ -0,0 +1,34 @@
class CoachingAdminController extends EICController {
dashboard() {
let models = {
coachings: new CoachingAdminModel()
}
this.loadWindow(
'coachings/admin/CoachingAdminDashboardView',
{
title: 'Coaching monitoring',
static: true,
expanded: true
},
{
models: models
});
}
coaching(options) {
}
profile(options) {
this.loadWindow('coachings/common/CoachProfileView', {
title: 'Coach profile',
static: true,
expanded: true
});
}
}
app.registerClass('CoachingAdminController', CoachingAdminController);