add sell and buy orders to admin

This commit is contained in:
João Geonizeli
2021-08-15 23:55:56 -03:00
parent b376567abd
commit 122b297ea8
8 changed files with 139 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
# frozen_string_literal: true
module Admin
class BuyCryptoOrdersController < Admin::ApplicationController
end
end

View File

@@ -0,0 +1,5 @@
# frozen_string_literal: true
module Admin
class SellCryptoOrdersController < Admin::ApplicationController
end
end