Able to deactivate invites if they aren't expired (#7163)
This commit is contained in:
parent
0cdf4567c7
commit
7f6823b149
1 changed files with 1 additions and 1 deletions
|
@ -13,5 +13,5 @@
|
||||||
= l invite.expires_at
|
= l invite.expires_at
|
||||||
%td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code)
|
%td= table_link_to 'link', public_invite_url(invite_code: invite.code), public_invite_url(invite_code: invite.code)
|
||||||
%td
|
%td
|
||||||
- if invite.expired? && policy(invite).destroy?
|
- if !invite.expired? && policy(invite).destroy?
|
||||||
= table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete
|
= table_link_to 'times', t('invites.delete'), invite_path(invite), method: :delete
|
||||||
|
|
Loading…
Reference in a new issue