Skip to content
Snippets Groups Projects
Commit bde19c06 authored by Robert Speicher's avatar Robert Speicher
Browse files

Update failure message for UsersProject uniqueness validation

Was "User has already been taken", is now "User already exists in
project".
parent a595f894
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -14,7 +14,7 @@ class UsersProject < ActiveRecord::Base
after_save :update_repository
after_destroy :update_repository
 
validates_uniqueness_of :user_id, scope: [:project_id]
validates_uniqueness_of :user_id, scope: [:project_id], message: "already exists in project"
validates_presence_of :user_id
validates_presence_of :project_id
 
Loading
Loading
@@ -48,10 +48,10 @@ class UsersProject < ActiveRecord::Base
 
def self.access_roles
{
"Guest" => GUEST,
"Reporter" => REPORTER,
"Guest" => GUEST,
"Reporter" => REPORTER,
"Developer" => DEVELOPER,
"Master" => MASTER
"Master" => MASTER
}
end
 
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