Skip to content
Snippets Groups Projects
Commit 98cf0ae3 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Correct indentation in readme, fixed display of social accounts in profile

parent 07aa6e59
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -83,24 +83,24 @@ Each month on the 22nd a new version is released together with an upgrade guide.
 
### Run in production mode
 
The Installation guide contains instructions on how to download an init script and run it automatically on boot. You can also start the init script manually:
The Installation guide contains instructions on how to download an init script and run it automatically on boot. You can also start the init script manually:
 
sudo service gitlab start
sudo service gitlab start
 
or by directly calling the script
or by directly calling the script
 
sudo /etc/init.d/gitlab start
sudo /etc/init.d/gitlab start
 
### Run in development mode
 
Start it with [Foreman](https://github.com/ddollar/foreman)
 
bundle exec foreman start -p 3000
bundle exec foreman start -p 3000
 
or start each component separately
or start each component separately
 
bundle exec rails s
bundle exec rake sidekiq:start
bundle exec rails s
bundle exec rake sidekiq:start
 
### Run the tests
 
Loading
Loading
Loading
Loading
@@ -10,4 +10,10 @@ module OauthHelper
def enabled_oauth_providers
Devise.omniauth_providers
end
def enabled_social_providers
enabled_oauth_providers.select do |name|
[:twitter, :github, :google_oauth2].include?(name.to_sym)
end
end
end
Loading
Loading
@@ -4,7 +4,7 @@
%legend Social Accounts
.oauth_select_holder
%p.hint Tip: Click on icon to activate sigin with one of the following services
- User.omniauth_providers.each do |provider|
- enabled_social_providers.each do |provider|
%span{class: oauth_active_class(provider) }
= link_to authbutton(provider, 32), omniauth_authorize_path(User, provider)
 
Loading
Loading
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