Compare commits

...

2 Commits

Author SHA1 Message Date
f3a1def396 Fixes ransack upgrade to 4.0 2023-04-19 22:52:31 +01:00
e178f94ff7 Remove mandatory fields 2023-04-19 22:48:35 +01:00
2 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,10 @@ class Member < ApplicationRecord
has_many :notifications has_many :notifications
has_paper_trail has_paper_trail
def self.ransackable_attributes(auth_object = nil)
%w[display_name legal_name email identification_number]
end
def cancelled_on def cancelled_on
expires_on + 90.days expires_on + 90.days
end end

View File

@ -20,11 +20,11 @@
</tr> </tr>
<tr> <tr>
<td><label><%= t('members.attributes.legal_name') %></label></td> <td><label><%= t('members.attributes.legal_name') %></label></td>
<td><%= form.text_field :legal_name, required: true %></label></td> <td><%= form.text_field :legal_name %></label></td>
</tr> </tr>
<tr> <tr>
<td><label><%= t('members.attributes.pronouns') %></label></td> <td><label><%= t('members.attributes.pronouns') %></label></td>
<td><%= form.text_field :pronouns, required: true %></label></td> <td><%= form.text_field :pronouns %></label></td>
</tr> </tr>
<tr> <tr>
<td><label><%= t('members.attributes.email') %></label></td> <td><label><%= t('members.attributes.email') %></label></td>