mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +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}}
|
|
@ -97,6 +97,9 @@ export default Router.map(function () {
|
|||
this.route('product', {
|
||||
path: 'product'
|
||||
});
|
||||
this.route('notice', {
|
||||
path: 'notice'
|
||||
});
|
||||
this.route('auth', {
|
||||
path: 'auth'
|
||||
});
|
||||
|
|
|
@ -21,6 +21,9 @@
|
|||
<a class="link" href="https://storage.googleapis.com/documize/downloads/documize-enterprise-linux-amd64">Linux</a> ·
|
||||
<a class="link" href="https://storage.googleapis.com/documize/downloads/documize-enterprise-darwin-amd64">macOS</a>
|
||||
</p>
|
||||
<small class="color-gray-500 margin-top-20">
|
||||
Documize utilizes {{#link-to "customize.notice" class="color-gray-600"}}third party{{/link-to}} open source components
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
{{ui/ui-spacer size=400}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue