Class: Handcart::SubdomainsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/handcart/subdomains_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



21
22
23
24
25
26
27
28
29
# File 'app/controllers/handcart/subdomains_controller.rb', line 21

def create
  @subdomain = Subdomain.new(safe_params)

  if @subdomain.save
    redirect_to subdomains_url, notice: 'Subdomain was successfully created.'
  else
    render :new
  end
end

#destroyObject



39
40
41
42
# File 'app/controllers/handcart/subdomains_controller.rb', line 39

def destroy
  @subdomain.destroy
  redirect_to subdomains_url, notice: 'Subdomain was successfully removed.'
end

#editObject



18
19
# File 'app/controllers/handcart/subdomains_controller.rb', line 18

def edit
end

#indexObject



7
8
9
# File 'app/controllers/handcart/subdomains_controller.rb', line 7

def index
  @subdomains = Subdomain.ordered.page(params[:page])
end

#newObject



14
15
16
# File 'app/controllers/handcart/subdomains_controller.rb', line 14

def new
  @subdomain = Subdomain.new
end

#showObject



11
12
# File 'app/controllers/handcart/subdomains_controller.rb', line 11

def show
end

#updateObject



31
32
33
34
35
36
37
# File 'app/controllers/handcart/subdomains_controller.rb', line 31

def update
  if @subdomain.update(safe_params)
    redirect_to subdomains_url, notice: 'Subdomain was successfully updated.'
  else
    render :edit
  end
end