Class: CompletionKit::MetricsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- CompletionKit::MetricsController
- Includes:
- TagFiltering
- Defined in:
- app/controllers/completion_kit/metrics_controller.rb
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#create ⇒ Object
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 |
#destroy ⇒ Object
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 |
#edit ⇒ Object
17 18 |
# File 'app/controllers/completion_kit/metrics_controller.rb', line 17 def edit end |
#index ⇒ Object
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 |
#new ⇒ Object
13 14 15 |
# File 'app/controllers/completion_kit/metrics_controller.rb', line 13 def new @metric = Metric.new end |
#show ⇒ Object
10 11 |
# File 'app/controllers/completion_kit/metrics_controller.rb', line 10 def show end |
#update ⇒ Object
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 |