7754189187
Didn't bother with files in db/, config/, or features/
62 lines
1.2 KiB
Ruby
62 lines
1.2 KiB
Ruby
module Account
|
|
def identifier
|
|
email.gsub /[^[:alnum:]]/, "_"
|
|
end
|
|
|
|
def is_admin?
|
|
admin
|
|
end
|
|
|
|
def require_ssh_key?
|
|
keys.count == 0
|
|
end
|
|
|
|
def can_create_project?
|
|
projects_limit > my_own_projects.count
|
|
end
|
|
|
|
def last_activity_project
|
|
projects.first
|
|
end
|
|
|
|
def first_name
|
|
name.split.first unless name.blank?
|
|
end
|
|
|
|
def cared_merge_requests
|
|
MergeRequest.where("author_id = :id or assignee_id = :id", id: self.id).opened
|
|
end
|
|
|
|
def project_ids
|
|
projects.map(&:id)
|
|
end
|
|
|
|
# Remove user from all projects and
|
|
# set blocked attribute to true
|
|
def block
|
|
users_projects.all.each do |membership|
|
|
return false unless membership.destroy
|
|
end
|
|
|
|
self.blocked = true
|
|
save
|
|
end
|
|
|
|
def projects_limit_percent
|
|
return 100 if projects_limit.zero?
|
|
(my_own_projects.count.to_f / projects_limit) * 100
|
|
end
|
|
|
|
def recent_push project_id = nil
|
|
# Get push events not earlier than 2 hours ago
|
|
events = recent_events.code_push.where("created_at > ?", Time.now - 2.hours)
|
|
events = events.where(project_id: project_id) if project_id
|
|
|
|
# Take only latest one
|
|
events = events.recent.limit(1).first
|
|
end
|
|
|
|
def projects_with_events
|
|
projects.includes(:events).order("events.created_at DESC")
|
|
end
|
|
end
|