forked from fixin.me/fixin.me
15 lines
183 B
Ruby
15 lines
183 B
Ruby
class MeasurementsController < ApplicationController
|
|
def index
|
|
@quantities = current_user.quantities.ordered
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|