Skip to content
Snippets Groups Projects
Commit 9f968041 authored by nicolas's avatar nicolas Committed by GitHub
Browse files

Merge pull request #6 from Gargron/master

Merge
parents 959e4b81 4495baf4
No related branches found
No related tags found
No related merge requests found
......@@ -48,11 +48,16 @@ code {
display: block;
}
input[type=checkbox] {
display: inline-block;
label.checkbox {
position: relative;
top: 3px;
margin-right: 8px;
padding-left: 25px;
}
input[type=checkbox] {
position: absolute;
left: 0;
top: 1px;
margin: 0;
}
}
......
......@@ -48,7 +48,7 @@ class ApiController < ApplicationController
response.headers['X-RateLimit-Limit'] = match_data[:limit].to_s
response.headers['X-RateLimit-Remaining'] = (match_data[:limit] - match_data[:count]).to_s
response.headers['X-RateLimit-Reset'] = (now + (match_data[:period] - now.to_i % match_data[:period])).to_s
response.headers['X-RateLimit-Reset'] = (now + (match_data[:period] - now.to_i % match_data[:period])).iso8601(6)
end
def set_pagination_headers(next_path = nil, prev_path = nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment