Can disable the oppurtunity to delete threads in the forums

This commit is contained in:
Futseh
2019-02-24 18:17:46 +01:00
parent 20ef79278f
commit f6cb866b85

View File

@@ -89,7 +89,7 @@ class ForumsController < ApplicationController
end
def forum_params(add = [])
a = [:name, :position, :role_read_id, :role_write_id, :necro_length] + add
a = [:name, :position, :role_read_id, :role_write_id, :necro_length, :disable_deletion] + add
params.require(:forum).permit(a)
end
end