20 lines
181 B
Ruby
20 lines
181 B
Ruby
class UserFeedbackController < ApplicationController
|
|
def new
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def index
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|