agency-of-learning / conference-app

1 stars 0 forks source link

Validate Comment contains content #108

Closed cnorm35 closed 1 year ago

cnorm35 commented 1 year ago

Currently we're allowing Comments to be submitted to the app with empty string in the comment field

irb(main):001:0> comment = Comment.last(2)
=>
[#<Comment:0x00007f20d59a24f8 id: 4, comment: "", created_at: Tue, 05 Sep 2023 23:09:26.242995000 CEST +02:00, updated_at: Tue, 05 Sep 2023 23:09:26.242995000 CEST +02:00>,
...
irb(main):002:0> comment.first.comment
=> ""
irb(main):003:0> comment.last.comment
=> ""
elhalvers commented 1 year ago

Added in dev. Will push with next PR with other minor fixes! : )