Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F905157
jobs_controller.rb
No One
Temporary
Actions
Download 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
Fri, Aug 29, 9:36 PM
Size
520 B
Mime Type
text/x-ruby
Expires
Sun, Aug 31, 9:36 PM (9 h, 35 m)
Engine
blob
Format
Raw Data
Handle
252513
Attached To
rWEBDNS WebDNS (edet4)
jobs_controller.rb
View Options
module
Admin
class
JobsController
<
ApplicationController
before_action
:authenticate_user!
before_action
:admin_only!
# GET /jobs
def
index
@job_categories
=
{
'Pending'
=>
Job
.
includes
(
:domain
)
.
pending
,
'Completed'
=>
Job
.
includes
(
:domain
)
.
completed
.
order
(
'id desc'
)
}
end
# DELETE /jobs/1
def
destroy
@job
=
Job
.
find
(
params
[
:id
]
)
@job
.
destroy
redirect_to
admin_jobs_url
,
notice
:
"
#{
@job
.
id
}
was successfully destroyed."
end
end
end
Event Timeline
Log In to Comment