diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-07-05 21:59:37 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-07-05 21:59:37 +0300 |
commit | d40b9ce26d9df5c9245d9a4f3c07c91dd1706f06 (patch) | |
tree | fc83e2bea851acd42ff6fae02fe9947a2d6562ff /app/controllers/admin | |
parent | 369df86e710bd876b3d688472cdce987e27640a3 (diff) | |
download | gitlab-ce-d40b9ce26d9df5c9245d9a4f3c07c91dd1706f06.tar.gz |
Admin gitolite logs. Refactored project creation. Few style fixes.
Diffstat (limited to 'app/controllers/admin')
-rw-r--r-- | app/controllers/admin/logs_controller.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/admin/logs_controller.rb b/app/controllers/admin/logs_controller.rb new file mode 100644 index 00000000000..c130b4b85a5 --- /dev/null +++ b/app/controllers/admin/logs_controller.rb @@ -0,0 +1,6 @@ +class Admin::LogsController < ApplicationController + layout "admin" + before_filter :authenticate_user! + before_filter :authenticate_admin! +end + |