mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
32 lines
945 B
Ruby
32 lines
945 B
Ruby
class UserApiKey < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
def access
|
|
has_push = push && push_url.present? && SiteSetting.allowed_user_api_push_urls.include?(push_url)
|
|
"#{read ? "r" : ""}#{write ? "w" : ""}#{has_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)
|
|
#
|