Skip to content
Snippets Groups Projects
Commit c0ebfea6 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Fix some useless access modifiers in the code

parent 1cd573ee
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -82,8 +82,6 @@ class Import::BitbucketController < Import::BaseController
go_to_bitbucket_for_permissions
end
 
private
def access_params
{
bitbucket_access_token: session[:bitbucket_access_token],
Loading
Loading
Loading
Loading
@@ -61,8 +61,6 @@ class Import::GitlabController < Import::BaseController
go_to_gitlab_for_permissions
end
 
private
def access_params
{ gitlab_access_token: session[:gitlab_access_token] }
end
Loading
Loading
Loading
Loading
@@ -142,8 +142,6 @@ module DiffHelper
toggle_whitespace_link(url, options)
end
 
private
def hide_whitespace?
params[:w] == '1'
end
Loading
Loading
module TokenAuthenticatable
extend ActiveSupport::Concern
 
private
def write_new_token(token_field)
new_token = generate_token(token_field)
write_attribute(token_field, new_token)
end
def generate_token(token_field)
loop do
token = Devise.friendly_token
break token unless self.class.unscoped.find_by(token_field => token)
end
end
class_methods do
def authentication_token_fields
@token_fields || []
Loading
Loading
@@ -32,18 +46,4 @@ module TokenAuthenticatable
end
end
end
private
def write_new_token(token_field)
new_token = generate_token(token_field)
write_attribute(token_field, new_token)
end
def generate_token(token_field)
loop do
token = Devise.friendly_token
break token unless self.class.unscoped.find_by(token_field => token)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment