Skip to content

Commit

Permalink
Fix README by adding the needed namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mjgiarlo committed Dec 12, 2019
1 parent ec610e0 commit 178f50c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@ In console, start by finding the storage root.

```ruby
msr = MoabStorageRoot.find_by!(name: name)
MoabToCatalog.seed_catalog_for_dir(msr.storage_location)
Audit::MoabToCatalog.seed_catalog_for_dir(msr.storage_location)
```

Or for all roots:
```ruby
MoabStorageRoot.find_each { |msr| MoabToCatalog.seed_catalog_for_dir(msr.storage_location) }
MoabStorageRoot.find_each { |msr| Audit::MoabToCatalog.seed_catalog_for_dir(msr.storage_location) }
```

## Development
Expand Down Expand Up @@ -285,4 +285,3 @@ bundle exec cap prod deploy # for the prod servers

### Resque Pool
The Resque Pool admin interface is available at `<hostname>/resque/overview`.

0 comments on commit 178f50c

Please sign in to comment.