Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shotengai
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
shotengai
Commits
ef84b6d6
Commit
ef84b6d6
authored
Sep 27, 2017
by
ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename the dir of controllers
parent
0835d741
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
14 additions
and
12 deletions
+14
-12
shotengai.rb
lib/shotengai.rb
+14
-12
base.rb
lib/shotengai/controller/base.rb
+0
-0
base.rb
lib/shotengai/controller/customer/base.rb
+0
-0
carts_controller.rb
lib/shotengai/controller/customer/carts_controller.rb
+0
-0
orders_controller.rb
lib/shotengai/controller/customer/orders_controller.rb
+0
-0
product_series_controller.rb
...hotengai/controller/customer/product_series_controller.rb
+0
-0
product_snapshots_controller.rb
...engai/controller/customer/product_snapshots_controller.rb
+0
-0
products_controller.rb
lib/shotengai/controller/customer/products_controller.rb
+0
-0
base.rb
lib/shotengai/controller/merchant/base.rb
+0
-0
orders_controller.rb
lib/shotengai/controller/merchant/orders_controller.rb
+0
-0
product_series_controller.rb
...hotengai/controller/merchant/product_series_controller.rb
+0
-0
product_snapshots_controller.rb
...engai/controller/merchant/product_snapshots_controller.rb
+0
-0
products_controller.rb
lib/shotengai/controller/merchant/products_controller.rb
+0
-0
No files found.
lib/shotengai.rb
View file @
ef84b6d6
...
@@ -12,25 +12,27 @@ module Shotengai
...
@@ -12,25 +12,27 @@ module Shotengai
autoload
:Catalog
,
'shotengai/catalog'
autoload
:Catalog
,
'shotengai/catalog'
autoload
:AASM_DLC
,
'shotengai/aasm_dlc'
autoload
:AASM_DLC
,
'shotengai/aasm_dlc'
autoload
:WebError
,
'shotengai/web_error'
autoload
:WebError
,
'shotengai/web_error'
autoload
:JsonColumn
,
'shotengai/json_column'
autoload
:Model
,
'shotengai/model'
module
Controller
module
Controller
autoload
:Base
,
'shotengai/controller
s
/base'
autoload
:Base
,
'shotengai/controller/base'
module
Merchant
module
Merchant
autoload
:Base
,
'shotengai/controller
s
/merchant/base'
autoload
:Base
,
'shotengai/controller/merchant/base'
autoload
:ProductsController
,
'shotengai/controller
s
/merchant/products_controller'
autoload
:ProductsController
,
'shotengai/controller/merchant/products_controller'
autoload
:ProductSnapshotsController
,
'shotengai/controller
s
/merchant/product_snapshots_controller'
autoload
:ProductSnapshotsController
,
'shotengai/controller/merchant/product_snapshots_controller'
autoload
:ProductSeriesController
,
'shotengai/controller
s
/merchant/product_series_controller'
autoload
:ProductSeriesController
,
'shotengai/controller/merchant/product_series_controller'
autoload
:OrdersController
,
'shotengai/controller
s
/merchant/orders_controller'
autoload
:OrdersController
,
'shotengai/controller/merchant/orders_controller'
end
end
module
Customer
module
Customer
autoload
:Base
,
'shotengai/controller
s
/customer/base'
autoload
:Base
,
'shotengai/controller/customer/base'
autoload
:ProductsController
,
'shotengai/controller
s
/customer/products_controller'
autoload
:ProductsController
,
'shotengai/controller/customer/products_controller'
autoload
:ProductSnapshotsController
,
'shotengai/controller
s
/customer/product_snapshots_controller'
autoload
:ProductSnapshotsController
,
'shotengai/controller/customer/product_snapshots_controller'
autoload
:ProductSeriesController
,
'shotengai/controller
s
/customer/product_series_controller'
autoload
:ProductSeriesController
,
'shotengai/controller/customer/product_series_controller'
autoload
:OrdersController
,
'shotengai/controller
s
/customer/orders_controller'
autoload
:OrdersController
,
'shotengai/controller/customer/orders_controller'
autoload
:CartsController
,
'shotengai/controller
s
/customer/carts_controller'
autoload
:CartsController
,
'shotengai/controller/customer/carts_controller'
end
end
end
end
end
end
lib/shotengai/controller
s
/base.rb
→
lib/shotengai/controller/base.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/customer/base.rb
→
lib/shotengai/controller/customer/base.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/customer/carts_controller.rb
→
lib/shotengai/controller/customer/carts_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/customer/orders_controller.rb
→
lib/shotengai/controller/customer/orders_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/customer/product_series_controller.rb
→
lib/shotengai/controller/customer/product_series_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/customer/product_snapshots_controller.rb
→
lib/shotengai/controller/customer/product_snapshots_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/customer/products_controller.rb
→
lib/shotengai/controller/customer/products_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/merchant/base.rb
→
lib/shotengai/controller/merchant/base.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/merchant/orders_controller.rb
→
lib/shotengai/controller/merchant/orders_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/merchant/product_series_controller.rb
→
lib/shotengai/controller/merchant/product_series_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/merchant/product_snapshots_controller.rb
→
lib/shotengai/controller/merchant/product_snapshots_controller.rb
View file @
ef84b6d6
File moved
lib/shotengai/controller
s
/merchant/products_controller.rb
→
lib/shotengai/controller/merchant/products_controller.rb
View file @
ef84b6d6
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment