Files
aperonight/app/controllers/admin/payouts_controller.rb

14 lines
132 B
Ruby

class Admin::PayoutsController < ApplicationController
def index
end
def show
end
def new
end
def create
end
end