Jacob Burenstam Linder
Jacob Burenstam Linder
@chlorophyll-zz this doesn't seem like this is an issue with `wayback_archiver`?
> I think this means that the robots module is not available in ruby 2.7? `robots` is a gem ([referenced here in wayback_archiver.gemspec](https://github.com/buren/wayback_archiver/blob/master/wayback_archiver.gemspec#L26)) It works for me on Ruby 2.7...
Seems like they've introduced rate limiting i two steps - Mid 2019, 20 req/min - October 2019, 5 req/min 5 requests a minute is, to say the least, not great...
🔗 [Here's how another similar-ish tool](https://github.com/caltechlibrary/eprints2archives/blob/32bc7d62e5c9428c1b91cbc4e86bce1c13d93c28/eprints2archives/network.py#L240) handles `HTTP 429 – Too Many Requests`. Wouldn't be that tricky to implement something similar.
We should add ```ruby def apply_filtering(chain) @search = chain.ransack(params[:q] || {}) @search.result(distinct: true) end ``` to `app/admin/order.rb`. At least thats what I've done for [`app/admin/job.rb:L251`](https://github.com/justarrived/just_match_api/blob/master/app/admin/job.rb#L251-L253). The `apply_filtering` is something the...
1. Closed in 9645b1aaa08bb6bb2e5bc357d6e5ce163ceddacf 2. I'm not sure thats exactly what you might expect, seems like there's a risk that a user is about to get hired even though they're...
@annahornmark ping ⏰
## PoC / Spike for naive 🚀 lookup [See original commit (inlined below)👇](https://github.com/justarrived/just_match_api/commit/d7704d75a497e34427c4e62974a3a9c6518abf18) ```diff diff --git a/app/controllers/api/v1/jobs_controller.rb b/app/controllers/api/v1/jobs_controller.rb index d2067cd..01ec49b 100644 --- a/app/controllers/api/v1/jobs_controller.rb +++ b/app/controllers/api/v1/jobs_controller.rb @@ -15,6 +15,23 @@ module...
WIP: https://github.com/justarrived/just_match_api/compare/restful-jobs-controller?expand=1 for RESTful jobs POST/PATCH