14 lines
138 B
Ruby
14 lines
138 B
Ruby
class UnapprovalsController < ApplicationController
|
|
def new
|
|
end
|
|
|
|
def index
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|