2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FIX: better handling of invite links after they are redeemed

FIX: deprecate invite_passthrough_hours setting
This commit is contained in:
Arpit Jalan 2018-05-08 20:12:58 +05:30
parent edb97edf5f
commit 83245aa508
10 changed files with 56 additions and 58 deletions

View file

@ -0,0 +1,5 @@
class RemoveInvitePassthroughHours < ActiveRecord::Migration[5.1]
def change
execute "DELETE FROM site_settings WHERE name = 'invite_passthrough_hours'"
end
end