mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 04:34:32 +08:00
4c9ca24ccf
API keys are now only visible when first created. After that, only the first four characters are stored in the database for identification, along with an sha256 hash of the full key. This makes key usage easier to audit, and ensures attackers would not have access to the live site in the event of a database leak. This makes the merge lower risk, because we have some time to revert if needed. Once the change is confirmed to be working, we will add a second commit to drop the `key` column.
10 lines
314 B
Ruby
10 lines
314 B
Ruby
# frozen_string_literal: true
|
|
|
|
desc "generate a master api key with given description"
|
|
task "api_key:create_master", [:description] => :environment do |task, args|
|
|
raise "Supply a description for the key" if !args[:description]
|
|
api_key = ApiKey.create!(description: args[:description])
|
|
|
|
puts api_key.key
|
|
end
|