Merge pull request 'Add email service and settings' (#154) from feature/email_service into master
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #154
Reviewed-by: galfert <garret.alfert@gmail.com>
This commit was merged in pull request #154.
This commit is contained in:
2024-01-22 09:01:18 +00:00
24 changed files with 500 additions and 35 deletions

View File

@@ -23,6 +23,12 @@ Rails.application.routes.draw do
resource :mastodon, only: [:show], controller: 'mastodon'
resource :email, only: [:show], controller: 'email' do
member do
get 'new_password'
end
end
resources :lightning, only: [:index] do
collection do
get 'transactions'
@@ -44,6 +50,7 @@ Rails.application.routes.draw do
collection do
post 'update_email'
post 'reset_password'
post 'reset_email_password'
post 'set_nostr_pubkey'
delete 'nostr_pubkey', to: 'settings#remove_nostr_pubkey'
end