Code & Deploy
Code
Models
Repos
Sign in
@setoelkahfi
/
homebrew-tap
homebrew-tap
/
app
/
models
/
ssh_key.rb
Code
Commits
Pulls
CI/CD
205
main
main
rb
7 lines
204 Bytes
Copy permalink
Copy
Raw
1
class
SshKey
<
ApplicationRecord
2
belongs_to
:user
3
4
validates
:title
,
presence:
true
5
validates
:key_text
,
presence:
true
6
validates
:fingerprint
,
presence:
true
,
uniqueness:
{
scope: :user_id
}
7
end