* Create DiscussionLocks
* Fix specs
* Update nullify_blank_notes_and_reason
* Update before_validation call
* Updated DiscussionLockPolicy for clarity
* Move permitted_attributes to a constant
* Update route
* Apply suggestions from code review for frontend
Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
* Add title tags
* Wrap unlock confirm in main element
* Wrap flash messages up in div
* Actually fix title tags
* Hide comment reply button when discussion is locked
* Add E2E tests
* Try to fix E2E tests
* Cypress...you work locally but not in CI...why!?
* PR feedback
* Update E2E tests
* More E2E updates 😭
Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
9 lines
280 B
Ruby
9 lines
280 B
Ruby
FactoryBot.define do
|
|
factory :discussion_lock do
|
|
association :article, factory: :article, strategy: :create
|
|
association :locking_user, factory: :user, strategy: :create
|
|
|
|
reason { "This post has too many off-topic comments" }
|
|
notes { "Private notes" }
|
|
end
|
|
end
|