Compare commits
5 Commits
022094ce51
...
v0.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
| efe168b205 | |||
|
5b6d6bbd00
|
|||
|
458b585cdb
|
|||
|
f651289410
|
|||
|
7ca91cf882
|
@@ -12,6 +12,9 @@ steps:
|
||||
restore: true
|
||||
mount:
|
||||
- vendor
|
||||
when:
|
||||
branch:
|
||||
- master
|
||||
- name: rspec
|
||||
image: guildeducation/rails:2.7.1-12.19.0
|
||||
commands:
|
||||
@@ -30,6 +33,9 @@ steps:
|
||||
rebuild: true
|
||||
mount:
|
||||
- vendor
|
||||
when:
|
||||
branch:
|
||||
- master
|
||||
|
||||
volumes:
|
||||
- name: cache
|
||||
|
||||
@@ -10,9 +10,9 @@ credentials, invites, donations, etc..
|
||||
* [x] Reset account password when logged in, via reset email
|
||||
* [x] Log in with admin permissions
|
||||
* [x] View LDAP users as admin
|
||||
* [x] Sign up for a new account via invitation
|
||||
* [ ] List my donations
|
||||
* [ ] Invite new users from your account
|
||||
* [ ] Sign up for a new account via invitation
|
||||
* [ ] Sign up for a new account by donating upfront
|
||||
* [ ] Sign up for a new account via proving contributions (via cryptographic signature)
|
||||
* [ ] ...
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class ApplicationService
|
||||
# This enables executing a service's `#call` method directly via
|
||||
# `MyService.call(args)`, without creating a class instance it first.
|
||||
def self.call(*args, &block)
|
||||
new(*args, &block).call
|
||||
end
|
||||
|
||||
@@ -43,4 +43,10 @@ Rails.application.configure do
|
||||
|
||||
# Raises error for missing translations.
|
||||
# config.action_view.raise_on_missing_translations = true
|
||||
|
||||
config.action_mailer.default_url_options = {
|
||||
host: "accounts.kosmos.org",
|
||||
protocol: "https",
|
||||
from: "accounts@kosmos.org"
|
||||
}
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user