Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F461746
routes.rb
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, May 18, 6:01 PM
Size
999 B
Mime Type
text/plain
Expires
Tue, May 20, 6:01 PM (1 d, 7 h)
Engine
blob
Format
Raw Data
Handle
220426
Attached To
rARCHIVING archiving
routes.rb
View Options
Rails
.
application
.
routes
.
draw
do
root
'clients#index'
resources
:clients
,
only
:
[
:index
,
:show
]
do
member
do
get
:jobs
get
:logs
get
:stats
post
:stats
end
collection
do
post
:index
end
end
resources
:hosts
,
only
:
[
:new
,
:create
,
:show
,
:edit
,
:update
,
:destroy
]
do
member
do
post
:submit_config
get
:restore
post
:run_restore
delete
:revoke
end
resources
:jobs
,
only
:
[
:new
,
:create
,
:show
,
:edit
,
:update
,
:destroy
]
do
member
do
patch
:toggle_enable
post
:backup_now
end
end
resources
:filesets
,
only
:
[
:show
,
:new
,
:create
,
:destroy
]
resources
:schedules
,
only
:
[
:show
,
:new
,
:edit
,
:create
,
:update
,
:destroy
]
end
namespace
:admin
do
match
'/'
,
to
:
'base#index'
,
via
:
[
:get
,
:post
]
resources
:clients
,
only
:
[
:index
,
:show
]
do
member
do
get
:jobs
get
:logs
get
:stats
post
:stats
end
end
end
end
Event Timeline
Log In to Comment