rename ss-tools to superset-tools across the entire project

- Replace all occurrences of 'ss-tools' with 'superset-tools' in 104 files
- Rename git bundle file ss-tools.bundle → superset-tools.bundle
- Update .gitignore pattern accordingly
- Preserve variable names (hasSsTools etc.) and code identifiers
This commit is contained in:
2026-06-16 11:15:19 +03:00
parent d75db60343
commit ec6421de35
129 changed files with 467 additions and 467 deletions

View File

@@ -24,7 +24,7 @@ class TestAuthConfig:
assert config.SECRET_KEY == "test-secret-key"
assert config.ALGORITHM == "HS256"
assert config.ACCESS_TOKEN_EXPIRE_MINUTES == 480
assert config.JWT_AUDIENCE == "ss-tools-api"
assert config.JWT_AUDIENCE == "superset-tools-api"
def test_validates_secret_key_empty(self):
from src.core.auth.config import AuthConfig
@@ -87,8 +87,8 @@ class TestAuthConfig:
"AUTH_DATABASE_URL": "sqlite:///test.db",
}, clear=True):
config = AuthConfig()
assert config.JWT_AUDIENCE == "ss-tools-api"
assert config.JWT_ISSUER == "ss-tools"
assert config.JWT_AUDIENCE == "superset-tools-api"
assert config.JWT_ISSUER == "superset-tools"
# #endregion test_auth_config