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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
e79e2ae1
Commit
e79e2ae1
authored
Jul 05, 2017
by
Alexis Reigel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
validate presence of user on gpg_key
parent
d9fd3709
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
app/models/gpg_key.rb
app/models/gpg_key.rb
+2
-0
spec/models/gpg_key_spec.rb
spec/models/gpg_key_spec.rb
+1
-0
No files found.
app/models/gpg_key.rb
View file @
e79e2ae1
...
...
@@ -6,6 +6,8 @@ class GpgKey < ActiveRecord::Base
belongs_to
:user
has_many
:gpg_signatures
,
dependent: :nullify
validates
:user
,
presence:
true
validates
:key
,
presence:
true
,
uniqueness:
true
,
...
...
spec/models/gpg_key_spec.rb
View file @
e79e2ae1
...
...
@@ -6,6 +6,7 @@ describe GpgKey do
end
describe
"validation"
do
it
{
is_expected
.
to
validate_presence_of
(
:user
)
}
it
{
is_expected
.
to
validate_presence_of
(
:key
)
}
it
{
is_expected
.
to
validate_uniqueness_of
(
:key
)
}
it
{
is_expected
.
to
allow_value
(
"-----BEGIN PGP PUBLIC KEY BLOCK-----
\n
key"
).
for
(
:key
)
}
...
...
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