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

Dont show project limit sidebar if user can own 100+ more projects

parent d61a21d2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -325,9 +325,13 @@ class User < ActiveRecord::Base
MergeRequest.cared(self)
end
 
def projects_limit_left
projects_limit - owned_projects.count
end
def projects_limit_percent
return 100 if projects_limit.zero?
(personal_projects.count.to_f / projects_limit) * 100
(owned_projects.count.to_f / projects_limit) * 100
end
 
def recent_push project_id = nil
Loading
Loading
Loading
Loading
@@ -73,16 +73,17 @@
Want to share a team between projects?
= link_to new_team_path, class: "btn btn-tiny" do
Create a team
%fieldset
%legend
Personal projects:
%small.pull-right
%span= current_user.owned_projects.count
of
%span= current_user.projects_limit
.padded
.progress
.bar{style: "width: #{current_user.projects_limit_percent}%;"}
- unless current_user.projects_limit_left > 100
%fieldset
%legend
Owned projects:
%small.pull-right
%span= current_user.owned_projects.count
of
%span= current_user.projects_limit
.padded
.progress
.bar{style: "width: #{current_user.projects_limit_percent}%;"}
 
%fieldset
%legend
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