8 lines
319 B
Python
8 lines
319 B
Python
class RedmineConfig:
|
|
def __init__(self):
|
|
self.base_url = "https://redmine.sbps.ru"
|
|
self.time_entries_url = "/time_entries.json"
|
|
self.my_account_url = "/my/account.json"
|
|
self.datetime_format = "%Y-%m-%d"
|
|
self.time_entry_activities = "/enumerations/time_entry_activities.json"
|