summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2014-06-02 10:20:37 +0200
committerMarin Jankovski <marin@gitlab.com>2014-06-03 11:37:23 +0200
commit79f8abc51fa876e12de4150ab3ec489208aaed84 (patch)
treeefe41847c777590c7e57edfe63549360c47dae73 /app
parent90c2e0d971b5c105224196b8509012f943c9ea9b (diff)
downloadgitlab-ce-79f8abc51fa876e12de4150ab3ec489208aaed84.tar.gz
Replace snippets scopes in view and controller.
Diffstat (limited to 'app')
-rw-r--r--app/controllers/snippets_controller.rb10
-rw-r--r--app/views/snippets/current_user_index.html.haml12
2 files changed, 11 insertions, 11 deletions
diff --git a/app/controllers/snippets_controller.rb b/app/controllers/snippets_controller.rb
index 59ad8ff907c..89edd9fd7e1 100644
--- a/app/controllers/snippets_controller.rb
+++ b/app/controllers/snippets_controller.rb
@@ -26,15 +26,15 @@ class SnippetsController < ApplicationController
if @user == current_user
@snippets = case params[:scope]
- when 'public' then
- @snippets.public
- when 'private' then
- @snippets.private
+ when 'is_public' then
+ @snippets.is_public
+ when 'is_private' then
+ @snippets.is_private
else
@snippets
end
else
- @snippets = @snippets.public
+ @snippets = @snippets.is_public
end
@snippets = @snippets.page(params[:page]).per(20)
diff --git a/app/views/snippets/current_user_index.html.haml b/app/views/snippets/current_user_index.html.haml
index 90ddc7198f6..3e030428701 100644
--- a/app/views/snippets/current_user_index.html.haml
+++ b/app/views/snippets/current_user_index.html.haml
@@ -18,16 +18,16 @@
All
%span.pull-right
= @user.snippets.count
- = nav_tab :scope, 'private' do
- = link_to user_snippets_path(@user, scope: 'private') do
+ = nav_tab :scope, 'is_private' do
+ = link_to user_snippets_path(@user, scope: 'is_private') do
Private
%span.pull-right
- = @user.snippets.private.count
- = nav_tab :scope, 'public' do
- = link_to user_snippets_path(@user, scope: 'public') do
+ = @user.snippets.is_private.count
+ = nav_tab :scope, 'is_public' do
+ = link_to user_snippets_path(@user, scope: 'is_public') do
Public
%span.pull-right
- = @user.snippets.public.count
+ = @user.snippets.is_public.count
.col-md-9.my-snippets
= render 'snippets'