Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simple_controller
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
simple_controller
Commits
631722ab
Commit
631722ab
authored
Nov 20, 2020
by
liyijie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add import & export API
parent
ed132273
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
base_controller.rb
lib/simple_controller/base_controller.rb
+16
-0
No files found.
lib/simple_controller/base_controller.rb
View file @
631722ab
...
@@ -28,6 +28,17 @@ class SimpleController::BaseController < ::InheritedResources::Base
...
@@ -28,6 +28,17 @@ class SimpleController::BaseController < ::InheritedResources::Base
super
(
options
,
&
block
)
super
(
options
,
&
block
)
end
end
def
import
xlsx_file
=
params
[
:file
]
response
=
import_class
.
import_xlsx
xlsx_file
,
collection
,
params
.
to_unsafe_h
render
json:
response
,
status:
201
end
def
export
url
=
export_class
.
export_xlsx
collection
,
params
.
to_unsafe_h
render
json:
{
url:
url
},
status:
201
end
protected
protected
class
<<
self
class
<<
self
...
@@ -42,6 +53,11 @@ class SimpleController::BaseController < ::InheritedResources::Base
...
@@ -42,6 +53,11 @@ class SimpleController::BaseController < ::InheritedResources::Base
set_view_path
view_path
if
view_path
.
present?
set_view_path
view_path
if
view_path
.
present?
super
(
options
)
super
(
options
)
self
.
class_attribute
:import_class
,
instance_writer:
false
unless
self
.
respond_to?
:import_class
self
.
class_attribute
:export_class
,
instance_writer:
false
unless
self
.
respond_to?
:export_class
self
.
import_class
=
options
.
delete
(
:import_class
)
||
self
.
resource_class
self
.
export_class
=
options
.
delete
(
:export_class
)
||
self
.
resource_class
end
end
def
set_view_path
path
def
set_view_path
path
...
...
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