Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ Section Order:

- Improved explanatory text in the campaign table a bit

### Removed

- Unused constants

## [2.4.2] - 2025-06-16

### Fixed
Expand Down
8 changes: 0 additions & 8 deletions sovtimer/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
Constants we use throughout the app
"""

# Standard Library
import os

# Alliance Auth
from esi import __version__ as esi_version

Expand All @@ -18,10 +15,5 @@
GITHUB_URL = f"https://github.com/ppfeufer/{APP_NAME}"
USER_AGENT = f"{APP_NAME_VERBOSE_USERAGENT}/{__version__} (+{GITHUB_URL}) Django-ESI/{esi_version}"

# aa-sov-timer/sovtimer
APP_BASE_DIR = os.path.join(os.path.dirname(__file__))
# aa-sov-timer/sovtimer/static/sovtimer
APP_STATIC_DIR = os.path.join(APP_BASE_DIR, "static", PACKAGE_NAME)

# All internal URLs need to start with this prefix
INTERNAL_URL_PREFIX = "-"