Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
19d0dc3c
Commit
19d0dc3c
authored
Jun 28, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Strict first project symdol to letter
parent
7ef18060
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
app/models/project.rb
app/models/project.rb
+5
-5
No files found.
app/models/project.rb
View file @
19d0dc3c
...
...
@@ -48,7 +48,7 @@ class Project < ActiveRecord::Base
Project
.
transaction
do
project
.
owner
=
user
project
.
save!
return
project
unless
project
.
save
# Add user as project master
project
.
users_projects
.
create!
(
:project_access
=>
UsersProject
::
MASTER
,
:user
=>
user
)
...
...
@@ -72,8 +72,8 @@ class Project < ActiveRecord::Base
validates
:path
,
:uniqueness
=>
true
,
:presence
=>
true
,
:format
=>
{
:with
=>
/^[a-zA-Z0-9_\-\.]*$/
,
:message
=>
"only letters, digits & '_' '-' '.' allowed"
},
:format
=>
{
:with
=>
/^[a-zA-Z
][a-zA-Z
0-9_\-\.]*$/
,
:message
=>
"only letters, digits & '_' '-' '.' allowed
. Letter should be first
"
},
:length
=>
{
:within
=>
0
..
255
}
validates
:description
,
...
...
@@ -82,8 +82,8 @@ class Project < ActiveRecord::Base
validates
:code
,
:presence
=>
true
,
:uniqueness
=>
true
,
:format
=>
{
:with
=>
/^[a-zA-Z0-9_\-\.]*$/
,
:message
=>
"only letters, digits & '_' '-' '.' allowed"
},
:format
=>
{
:with
=>
/^[a-zA-Z
][a-zA-Z
0-9_\-\.]*$/
,
:message
=>
"only letters, digits & '_' '-' '.' allowed
. Letter should be first
"
},
:length
=>
{
:within
=>
1
..
255
}
validates
:owner
,
:presence
=>
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment