So I have two controllers, admin/users_controller which lets my admin's manage users, and members_controller which lets site users edit their own profile.
Everything works great so far but when a user updates his/her own profile through the members_controller, it looks like the update action in the admin/users_controller is called because I get redirected to the admin/edit user path!
I just went to the admin/users_controller and put a different path in and when I try to update a profile through members_controller it redirects to the new path! wtf!?
I dont know if this is important but Im using devise to manage session.
Here is my routes file:
devise_for :users
root :to => "index#home"
#members section and its nested images
resources :members, :except => [:new, :create] do
resources :tattoos
end
#admin section
namespace :admin do
root :to => "admin#index"
# pulls all users to manage
resources :users do
#pulls just admin/artist users
collection do
get 'admins'
get 'artists'
end
end
# Adds resources to manage (approve/reject) images
resources :tattoos do
# adds a couple extra actions on images
collection do
get 'reported'
put "mass_approve"
end
end
end
#public tattoo viewing and submissions
match "/submit" => "index#new", :via => :get, :as => "submit"
match "/submit" => "index#create", :via => :post
match "/tattoo/:id" => "index#show", :via => :get, :as =>"tattoo"
match "/tagged" => "index#tagged", :via => :get
match "/tattoo/:id" => "index#destroy", :via => :delete
match "/tattoos" => "index#index", :via => :get, :as => "tattoos"
Here are my controllers in question:
## members_controller
class MembersController < ApplicationController
def edit
@user = User.find(params[:id])
end
def update
@user = User.find(params[:id])
if @user.update_attributes(params[:user])
flash[:success] = "User Was updated"
redirect_to(edit_member_path(@user))
else
redirect_to(edit_member_path(@user))
end
end
## admin/users_controller
class Admin::UsersController < Admin::AdminController
def edit
@user = User.find(params[:id])
end
def update
@user = User.find(params[:id])
if @user.update_attributes(params[:user])
flash[:success] = "User Was updated"
redirect_to(edit_admin_user_path(@user))
else
redirect_to(edit_admin_user_path(@user))
end
end