institute_jwt_expire_time_in_days = 2
# this number is the lifetime of a jwt record in days
# a jwt record will expire after these days
# ---------------------------------------------------------------------------

max_number_of_not_completed_transfer_ownership_requests_per_user = 5
# this variable indicates the maximum allowed number of incomplete transfer ownership requests for each user.
# -----------------------------------------------------------------------

transfer_ownership_cleanup_offset_days = 30
# you want to clear Transfer ownership records which their new_owner_accept_at or old_owner_accept_at are less than some days before now.
# this variable is responsible for defining that days.
# -----------------------------------------------------------------------
maximum_size_institute_logo_MG = 5
maximum_size_institute_poster_MG = 5
# maximum size of logo for institute. this number is in KBs
minimum_institute_logo_size = 5
# minimum size of logo for institute.
# if logo size is less than this number, it doesn't compressed and copied to logo thumbnail
# this number is also in KBs
allowed_formats_for_institute_logo = ('.jpg', '.JPG', '.jpeg', '.png', '.PNG')
allowed_formats_for_institute_poster = (
    '.jpg', '.JPG', '.jpeg', '.png', '.PNG')

maximum_side_size_for_institute_logo = 2048  # px
maximum_side_size_compress_for_institute_logo = 256  # px
maximum_side_size_compress_for_institute_logo_thumbnail = 128  # px
maximum_side_size_compress_for_institute_poster = 512  # px
maximum_side_size_compress_for_institute_poster_thumbnail = 256  # px
maximum_side_size_for_institute_poster = 2048  # px
