Skip to content

Commit

Permalink
Drop individual UserAPIKeys.vue; this functionality is included in th…
Browse files Browse the repository at this point in the history
…e standard user grid now.
  • Loading branch information
dannon committed May 21, 2018
1 parent fb199c5 commit 61e2e82
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 76 deletions.
8 changes: 0 additions & 8 deletions client/galaxy/scripts/apps/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import QueryStringParsing from "utils/query-string-parsing";
import Router from "layout/router";
import Utils from "utils/utils";
import Page from "layout/page";
import UserAPIKeys from "components/admin/UserAPIKeys.vue";
import DataTables from "components/admin/DataTables.vue";
import Vue from "vue";

Expand All @@ -28,7 +27,6 @@ window.app = function app(options, bootstrapped) {
"(/)admin(/)repositories": "show_repositories",
"(/)admin(/)forms": "show_forms",
"(/)admin(/)form(/)(:form_id)": "show_form",
"(/)admin/api_keys": "show_user_api_keys",
"(/)admin/data_tables": "show_data_tables"
},

Expand Down Expand Up @@ -90,12 +88,6 @@ window.app = function app(options, bootstrapped) {
);
},

show_user_api_keys: function() {
var vueMount = document.createElement("div");
this.page.display(vueMount);
new Vue(UserAPIKeys).$mount(vueMount);
},

show_data_tables: function() {
var vueMount = document.createElement("div");
this.page.display(vueMount);
Expand Down
68 changes: 0 additions & 68 deletions client/galaxy/scripts/components/admin/UserAPIKeys.vue

This file was deleted.

0 comments on commit 61e2e82

Please sign in to comment.