feat: implement payout system database schema and models

This commit is contained in:
kbe
2025-09-16 23:52:26 +02:00
parent e5ed1a34dd
commit 0399761fb3
23 changed files with 421 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
class Admin::PayoutsController < ApplicationController
def index
end
def show
end
def new
end
def create
end
end