21 lines
456 B
Python
21 lines
456 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"
|
|
|
|
@property
|
|
def time_entry_activities(self):
|
|
return "/enumerations/time_entry_activities.json"
|