Class: CompletionKit::MetricsController

Inherits:
ApplicationController show all
Includes:
TagFiltering
Defined in:
app/controllers/completion_kit/metrics_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



20
21
22
23
24
25
26
27
28
# File 'app/controllers/completion_kit/metrics_controller.rb', line 20

def create
  @metric = Metric.new(metric_params)

  if @metric.save
    redirect_to metric_path(@metric), notice: "Metric was successfully created."
  else
    render :new, status: :unprocessable_entity
  end
end

#destroyObject



38
39
40
41
# File 'app/controllers/completion_kit/metrics_controller.rb', line 38

def destroy
  @metric.destroy
  redirect_to metrics_path, notice: "Metric was successfully destroyed."
end

#editObject



17
18
# File 'app/controllers/completion_kit/metrics_controller.rb', line 17

def edit
end

#indexObject



6
7
8
# File 'app/controllers/completion_kit/metrics_controller.rb', line 6

def index
  @metrics = apply_tag_filter(Metric.includes(:metric_groups, :tags).order(:name))
end

#newObject



13
14
15
# File 'app/controllers/completion_kit/metrics_controller.rb', line 13

def new
  @metric = Metric.new
end

#showObject



10
11
# File 'app/controllers/completion_kit/metrics_controller.rb', line 10

def show
end

#updateObject



30
31
32
33
34
35
36
# File 'app/controllers/completion_kit/metrics_controller.rb', line 30

def update
  if @metric.update(metric_params)
    redirect_to metric_path(@metric), notice: "Metric was successfully updated."
  else
    render :edit, status: :unprocessable_entity
  end
end