7 lines
135 B
Ruby
7 lines
135 B
Ruby
class SpendingProposalsController < ApplicationController
|
|
before_action :authenticate_user!, except: [:index]
|
|
|
|
def index
|
|
end
|
|
|
|
end |