about summary refs log tree commit diff
path: root/app/controllers/settings_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-14 02:28:49 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-14 02:28:49 +0200
commit7a6d95f70ccb12d61355ecd677eff40dd13260b7 (patch)
tree93abd8019a8ca91c1c251307f0773ca008f4b875 /app/controllers/settings_controller.rb
parent9b195f5dd34ad646e1300abaaa42e10cf43cd5db (diff)
E-mail preferences page
Diffstat (limited to 'app/controllers/settings_controller.rb')
-rw-r--r--app/controllers/settings_controller.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/controllers/settings_controller.rb b/app/controllers/settings_controller.rb
deleted file mode 100644
index 299e1f3bc..000000000
--- a/app/controllers/settings_controller.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-class SettingsController < ApplicationController
-  layout 'auth'
-
-  before_action :authenticate_user!
-  before_action :set_account
-
-  def show
-  end
-
-  def update
-    if @account.update(account_params)
-      redirect_to settings_path, notice: 'Changes successfully saved!'
-    else
-      render action: :show
-    end
-  end
-
-  private
-
-  def account_params
-    params.require(:account).permit(:display_name, :note, :avatar, :header)
-  end
-
-  def set_account
-    @account = current_user.account
-  end
-end