https://github.com/umd-lib/avalon_batch_entry_monitor
https://github.com/umd-lib/avalon_batch_entry_monitor
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/umd-lib/avalon_batch_entry_monitor
- Owner: umd-lib
- Created: 2018-02-21T14:25:52.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2020-08-31T16:29:40.000Z (almost 6 years ago)
- Last Synced: 2025-02-27T12:42:06.846Z (over 1 year ago)
- Language: Ruby
- Size: 7.81 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Avalon Batch Entry Monitor
# Description
Adds a UI to view ( and possibly cancel ) Batch Entries in Avalon.
# Installation
Add
gem 'avalon_batch_entry_monitor', git: 'https://github.com/umd-lib/avalon_batch_entry_monitor.git'
to your Gemfile. Run "bundle install".
Then add the following changes to your Avalon app:
Add the plugin JS to your manifest ( i.e. app/assets/javascripts/application.js):
//= require avalon_batch_entry_monitor
and the plugin CSS to your manifest ( i.e. app/assets/stylesheets/application.scss):
@import 'avalon_batch_entry_monitor';
Then mount the engine in your config/routes.rb:
mount AvalonBatchEntryMonitor::Engine, at: '/'
# Usage
Go to /admin/batch_entries in your application to view your BatchEntries jobs.
Jobs that are not running ( and have not run ) can be canceled. Any job that
has a current_status of Queued can be removed from the queue by selecting them
in the UI and selecting "Cancel". This will flag the job to be not run during a
pre-perform step.