mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-25 04:26:08 +10:00
8 lines
134 B
Ruby
8 lines
134 B
Ruby
module ProfileHelper
|
|
def oauth_active_class provider
|
|
if current_user.provider == provider.to_s
|
|
'active'
|
|
end
|
|
end
|
|
end
|