feat: add promoter payouts controller and routes

This commit is contained in:
kbe
2025-09-16 23:52:49 +02:00
parent 0399761fb3
commit d922d7304d
9 changed files with 41 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
class Promoter::PayoutsController < ApplicationController
def index
end
def show
end
def create
end
end

View File

@@ -0,0 +1,2 @@
module Promoter::PayoutsHelper
end

View File

@@ -0,0 +1,2 @@
<h1>Promoter::Payouts#create</h1>
<p>Find me in app/views/promoter/payouts/create.html.erb</p>

View File

@@ -0,0 +1,2 @@
<h1>Promoter::Payouts#index</h1>
<p>Find me in app/views/promoter/payouts/index.html.erb</p>

View File

@@ -0,0 +1,2 @@
<h1>Promoter::Payouts#show</h1>
<p>Find me in app/views/promoter/payouts/show.html.erb</p>