-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add env for lux ad mosam * Add missing env variable * Resolve comments * Fix formatting Co-authored-by: Guido de Jong <[email protected]> * Resolve comments * Fix usage of codes from env, add low alcohol and whiskey category * Add env variable for treasurer title * Remove vscode config * Add low alcohol beer * Add low alcohol beer --------- Co-authored-by: Guido de Jong <[email protected]>
- Loading branch information
Showing
39 changed files
with
180 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ AMBER_CLIENT_SECRET= | |
FROM_EMAIL=[email protected] | ||
ICT_EMAIL=[email protected] | ||
ADMIN_EMAIL=[email protected] | ||
TREASURER_TITLE=penningmeester | ||
TREASURER_EMAIL=[email protected] | ||
TREASURER_NAME= | ||
TREASURER_PHONE= | ||
|
@@ -28,12 +29,15 @@ COMPANY_KVK=41 032 169 | |
|
||
SITE_NAME=S.O.F.I.A. | ||
SITE_SHORT_NAME=SOFIA | ||
SITE_LONG_NAME=Streepsysteem voor de Ordentelijke Festiviteiten van Inleggend Alpha | ||
SITE_ASSOCIATION=C.S.V. Alpha | ||
|
||
CODE_BEER=8010 | ||
CODE_LOW_ALCOHOL_BEER=8011 | ||
CODE_CRAFT_BEER=8015 | ||
CODE_NON_ALCOHOLIC=8020 | ||
CODE_DISTILLED=8030 | ||
CODE_WHISKEY=8035 | ||
CODE_WINE=8040 | ||
CODE_FOOD=8050 | ||
CODE_TOBACCO=8060 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
class PaymentPolicy < ApplicationPolicy | ||
def index? | ||
user.treasurer? | ||
mollie_enabled? && user.treasurer? | ||
end | ||
|
||
def create? | ||
user | ||
mollie_enabled? && user | ||
end | ||
|
||
def add? | ||
user | ||
mollie_enabled? && user | ||
end | ||
|
||
def invoice_callback? | ||
record && !record.completed? | ||
mollie_enabled? && record && !record.completed? | ||
end | ||
|
||
def mollie_enabled? | ||
Rails.application.config.x.mollie_api_key.present? | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.