mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:46:50 +08:00
31 lines
839 B
Ruby
31 lines
839 B
Ruby
|
class UserApiKey < ActiveRecord::Base
|
||
|
belongs_to :user
|
||
|
|
||
|
def access
|
||
|
"#{read ? "r" : ""}#{write ? "w" : ""}#{push ? "p" : ""}"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: user_api_keys
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# user_id :integer not null
|
||
|
# client_id :string not null
|
||
|
# key :string not null
|
||
|
# application_name :string not null
|
||
|
# read :boolean not null
|
||
|
# write :boolean not null
|
||
|
# push :boolean not null
|
||
|
# push_url :string
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
#
|
||
|
# Indexes
|
||
|
#
|
||
|
# index_user_api_keys_on_client_id (client_id)
|
||
|
# index_user_api_keys_on_key (key) UNIQUE
|
||
|
# index_user_api_keys_on_user_id (user_id)
|
||
|
#
|