diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-14 11:14:29 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-14 11:14:29 +0200 |
commit | 0f3e438f7cab87514be3896bb8acdc05defdef14 (patch) | |
tree | 75e44065584f0d169e63d61711e6816412f17133 /apps/oauth2/src | |
parent | c41aa7a20929118ce1092c603f709d06aef1da57 (diff) | |
download | nextcloud-server-0f3e438f7cab87514be3896bb8acdc05defdef14.tar.gz nextcloud-server-0f3e438f7cab87514be3896bb8acdc05defdef14.zip |
Move OC.theme to the bundle and deprecate oc_defaults
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/oauth2/src')
-rw-r--r-- | apps/oauth2/src/App.vue | 2 | ||||
-rw-r--r-- | apps/oauth2/src/main.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 036af6ca25f..58ea4b819a6 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -22,7 +22,7 @@ <template> <div id="oauth2" class="section"> <h2>{{ t('oauth2', 'OAuth 2.0 clients') }}</h2> - <p class="settings-hint">{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: oc_defaults.name}) }}</p> + <p class="settings-hint">{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: OC.theme.name}) }}</p> <table class="grid" v-if="clients.length > 0"> <thead> <tr> diff --git a/apps/oauth2/src/main.js b/apps/oauth2/src/main.js index ff68f48593d..b200347d901 100644 --- a/apps/oauth2/src/main.js +++ b/apps/oauth2/src/main.js @@ -24,7 +24,6 @@ import Vue from 'vue'; import App from './App.vue'; Vue.prototype.t = t; -Vue.prototype.oc_defaults = oc_defaults; Vue.prototype.OC = OC; const app = new Vue({ |