mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
Display third party notices in UI
This commit is contained in:
parent
e1001bb11e
commit
e1a8f8b724
6 changed files with 2576 additions and 1 deletions
17
gui/app/pods/customize/notice/controller.js
Normal file
17
gui/app/pods/customize/notice/controller.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||
//
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
//
|
||||
// You can operate outside the AGPL restrictions by purchasing
|
||||
// Documize Enterprise Edition and obtaining a commercial license
|
||||
// by contacting <sales@documize.com>.
|
||||
//
|
||||
// https://documize.com
|
||||
|
||||
import { inject as service } from '@ember/service';
|
||||
import Controller from '@ember/controller';
|
||||
|
||||
export default Controller.extend({
|
||||
appMeta: service(),
|
||||
});
|
33
gui/app/pods/customize/notice/route.js
Normal file
33
gui/app/pods/customize/notice/route.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||
//
|
||||
// This software (Documize Community Edition) is licensed under
|
||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||
//
|
||||
// You can operate outside the AGPL restrictions by purchasing
|
||||
// Documize Enterprise Edition and obtaining a commercial license
|
||||
// by contacting <sales@documize.com>.
|
||||
//
|
||||
// https://documize.com
|
||||
|
||||
import { inject as service } from '@ember/service';
|
||||
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
|
||||
import Route from '@ember/routing/route';
|
||||
|
||||
export default Route.extend(AuthenticatedRouteMixin, {
|
||||
appMeta: service(),
|
||||
session: service(),
|
||||
global: service(),
|
||||
|
||||
beforeModel() {
|
||||
if (!this.get("session.isAdmin")) {
|
||||
this.transitionTo('auth.login');
|
||||
}
|
||||
},
|
||||
|
||||
model() {
|
||||
},
|
||||
|
||||
activate() {
|
||||
this.get('browser').setTitle('Notices');
|
||||
}
|
||||
});
|
2519
gui/app/pods/customize/notice/template.hbs
Normal file
2519
gui/app/pods/customize/notice/template.hbs
Normal file
File diff suppressed because it is too large
Load diff
|
@ -3,4 +3,4 @@
|
|||
desc=(concat "You are running "appMeta.edition " Edition " appMeta.version " (build " appMeta.revision ")")
|
||||
icon=constants.Icon.Announce}}
|
||||
|
||||
{{customize/change-log}}
|
||||
{{customize/change-log}}
|
Loading…
Add table
Add a link
Reference in a new issue