mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
Support for per-user API keys
This commit is contained in:
16
spec/models/api_key_spec.rb
Normal file
16
spec/models/api_key_spec.rb
Normal file
@ -0,0 +1,16 @@
|
||||
# encoding: utf-8
|
||||
require 'spec_helper'
|
||||
require_dependency 'api_key'
|
||||
|
||||
describe ApiKey do
|
||||
it { should belong_to :user }
|
||||
it { should belong_to :created_by }
|
||||
|
||||
it { should validate_presence_of :key }
|
||||
|
||||
it 'validates uniqueness of user_id' do
|
||||
Fabricate(:api_key)
|
||||
should validate_uniqueness_of(:user_id)
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user