mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-19 01:26:08 +10:00
Validate project limit only when create project
This commit is contained in:
@@ -46,11 +46,14 @@ module Projects
|
||||
@project.creator = current_user
|
||||
|
||||
if @project.save
|
||||
unless @project.group
|
||||
@project.users_projects.create(project_access: UsersProject::MASTER, user: current_user)
|
||||
end
|
||||
|
||||
@project.discover_default_branch
|
||||
|
||||
unless @project.group
|
||||
@project.users_projects.create(
|
||||
project_access: UsersProject::MASTER,
|
||||
user: current_user
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@project
|
||||
|
||||
@@ -89,7 +89,7 @@ class Project < ActiveRecord::Base
|
||||
format: { with: URI::regexp(%w(git http https)), message: "should be a valid url" },
|
||||
if: :import?
|
||||
|
||||
validate :check_limit
|
||||
validate :check_limit, on: :create
|
||||
|
||||
# Scopes
|
||||
scope :without_user, ->(user) { where("projects.id NOT IN (:ids)", ids: user.authorized_projects.map(&:id) ) }
|
||||
|
||||
Reference in New Issue
Block a user