-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename plugin from global to global_redirect
That way we keep the `global` name available if we need a plugin to run on the actual Indico Global instance later on
- Loading branch information
1 parent
03a2550
commit 8dd2889
Showing
11 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[project] | ||
name = 'indico-plugin-global' | ||
name = 'indico-plugin-global-redirect' | ||
version = '3.3-dev' | ||
license = 'MIT' | ||
authors = [{ name = 'Indico Team', email = '[email protected]' }] | ||
|
@@ -16,14 +16,14 @@ dependencies = ['indico>=3.3'] | |
GitHub = 'https://github.com/indico/indico-plugins-cern' | ||
|
||
[project.entry-points.'indico.plugins'] | ||
global = 'indico_global.plugin:GlobalPlugin' | ||
global_redirect = 'indico_global_redirect.plugin:GlobalRedirectPlugin' | ||
|
||
[build-system] | ||
requires = ['hatchling==1.25.0'] | ||
build-backend = 'hatchling.build' | ||
|
||
[tool.hatch.build] | ||
packages = ['indico_global'] | ||
packages = ['indico_global_redirect'] | ||
exclude = [ | ||
'*.no-header', | ||
'.keep', | ||
|