16 lines
341 B
Python
16 lines
341 B
Python
class RedmineConfig:
|
|
@property
|
|
def base_url(self):
|
|
return "https://redmine.sbps.ru"
|
|
|
|
@property
|
|
def time_entries_url(self):
|
|
return "/time_entries.json"
|
|
|
|
@property
|
|
def my_account_url(self):
|
|
return "/my/account.json"
|
|
|
|
@property
|
|
def datetime_format(self):
|
|
return "%Y-%m-%d" |