Class: Client::ProfilesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/client/profiles_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



21
22
23
# File 'app/controllers/client/profiles_controller.rb', line 21

def create
    
end

#destroyObject



29
30
31
# File 'app/controllers/client/profiles_controller.rb', line 29

def destroy
    
end

#editObject



18
19
# File 'app/controllers/client/profiles_controller.rb', line 18

def edit
end

#indexObject



8
9
10
# File 'app/controllers/client/profiles_controller.rb', line 8

def index
    @profile = current_user.profiles.paginate(page: params[:page, per_page: 10])
end

#newObject



12
13
# File 'app/controllers/client/profiles_controller.rb', line 12

def new
end

#showObject



15
16
# File 'app/controllers/client/profiles_controller.rb', line 15

def show
end

#updateObject



25
26
27
# File 'app/controllers/client/profiles_controller.rb', line 25

def update
    
end