1
0
Fork 0
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:
Harvey Kandola 2019-03-24 17:53:22 -04:00
parent e1001bb11e
commit e1a8f8b724
6 changed files with 2576 additions and 1 deletions

View 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(),
});

View 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');
}
});

File diff suppressed because it is too large Load diff

View file

@ -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}}

View file

@ -97,6 +97,9 @@ export default Router.map(function () {
this.route('product', {
path: 'product'
});
this.route('notice', {
path: 'notice'
});
this.route('auth', {
path: 'auth'
});

View file

@ -21,6 +21,9 @@
<a class="link" href="https://storage.googleapis.com/documize/downloads/documize-enterprise-linux-amd64">Linux</a>&nbsp;&middot;
<a class="link" href="https://storage.googleapis.com/documize/downloads/documize-enterprise-darwin-amd64">macOS</a>&nbsp;
</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}}