upload limits: add time remaining until next upload to profiles (fix #3262).

This commit is contained in:
evazion
2017-08-10 23:52:47 -05:00
parent bf3101da48
commit 1ef363dd68
3 changed files with 8 additions and 3 deletions

View File

@@ -585,6 +585,10 @@ class User < ApplicationRecord
end
end
def next_free_upload_slot
(posts.where("created_at >= ?", 24.hours.ago).first.try(:created_at) || 24.hours.ago) + 24.hours
end
def tag_query_limit
if is_platinum?
Danbooru.config.base_tag_query_limit * 2