13 lines
210 B
Ruby
13 lines
210 B
Ruby
class MeasurementRoutinesController < ApplicationController
|
|
include Finders
|
|
|
|
before_action :find_measurement_routine, only: [:show, :edit]
|
|
before_action :authorize
|
|
|
|
def show
|
|
end
|
|
|
|
def edit
|
|
end
|
|
end
|