diff --git a/web/src/App.js b/web/src/App.js index 56254b39..4c746e53 100644 --- a/web/src/App.js +++ b/web/src/App.js @@ -651,7 +651,13 @@ class App extends Component { textAlign: "center", } }> - Powered by {"Casdoor"} + { + Conf.CustomFooter !== null ? Conf.CustomFooter : ( + + Powered by {"Casdoor"} + + ) + } ); diff --git a/web/src/Conf.js b/web/src/Conf.js index efb7f6c5..33df7d7e 100644 --- a/web/src/Conf.js +++ b/web/src/Conf.js @@ -28,3 +28,5 @@ export const ThemeDefault = { borderRadius: 6, isCompact: false, }; + +export const CustomFooter = null;