mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
06b7c44593
Feature for `Must Approve Users` setup. When a user is rejected, a staff member can optionally set a reason for audit purposes. In addition, feedback email can be sent to the user. Meta: https://meta.discourse.org/t/account-rejection-email/103112/8
8 lines
171 B
Ruby
8 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddRejectReasonToReviewables < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :reviewables, :reject_reason, :text
|
|
end
|
|
end
|