summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-25 23:16:43 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-25 23:16:43 -0700
commit366ce781b3d2687c2c8246a7230617217cae59f5 (patch)
tree3d2f940ee046d3d3fd4be442acd9037853eac89c
parent729f0b2e68c0f0ca416579c5845fd92c1e62faa4 (diff)
downloadgitlab-ce-366ce781b3d2687c2c8246a7230617217cae59f5.tar.gz
Remove unused doorkeeper layout
-rw-r--r--app/views/layouts/doorkeeper/admin.html.haml22
-rw-r--r--app/views/layouts/doorkeeper/application.html.haml15
2 files changed, 0 insertions, 37 deletions
diff --git a/app/views/layouts/doorkeeper/admin.html.haml b/app/views/layouts/doorkeeper/admin.html.haml
deleted file mode 100644
index bd9adfab66d..00000000000
--- a/app/views/layouts/doorkeeper/admin.html.haml
+++ /dev/null
@@ -1,22 +0,0 @@
-!!!
-%html
- %head
- %meta{:charset => "utf-8"}
- %meta{:content => "IE=edge", "http-equiv" => "X-UA-Compatible"}
- %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}
- %title Doorkeeper
- = stylesheet_link_tag "doorkeeper/admin/application"
- = csrf_meta_tags
- %body
- .navbar.navbar-inverse.navbar-fixed-top{:role => "navigation"}
- .container
- .navbar-header
- = link_to 'OAuth2 Provider', oauth_applications_path, class: 'navbar-brand'
- %ul.nav.navbar-nav
- = content_tag :li, class: "#{'active' if request.path == oauth_applications_path}" do
- = link_to 'Applications', oauth_applications_path
- .container
- - if flash[:notice].present?
- .alert.alert-info
- = flash[:notice]
- = yield \ No newline at end of file
diff --git a/app/views/layouts/doorkeeper/application.html.haml b/app/views/layouts/doorkeeper/application.html.haml
deleted file mode 100644
index e5f37fad1f4..00000000000
--- a/app/views/layouts/doorkeeper/application.html.haml
+++ /dev/null
@@ -1,15 +0,0 @@
-!!!
-%html
- %head
- %title OAuth authorize required
- %meta{:charset => "utf-8"}
- %meta{:content => "IE=edge", "http-equiv" => "X-UA-Compatible"}
- %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}
- = stylesheet_link_tag "doorkeeper/application"
- = csrf_meta_tags
- %body
- #container
- - if flash[:notice].present?
- .alert.alert-info
- = flash[:notice]
- = yield \ No newline at end of file