6 lines
109 B
Ruby
6 lines
109 B
Ruby
class Transactions::SurveysController < ApplicationController
|
|
def index
|
|
@surveys = Survey.all
|
|
end
|
|
end
|