Skip to content

Commit 0fd5139

Browse files
committed
changing names to TerminusCMS
1 parent c9ec5fd commit 0fd5139

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/tdb-dashboard/src/clientUtils.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ export function createClientUser(useAuth0,params){
1212
clientUser.firstLogin = user && user['http://terminusdb.com/schema/system#afterSignUp'] ? true : false
1313
// the agentName is the userID
1414
clientUser.user = clientUser.agentName
15-
clientUser.serverType = "TerminusX"
15+
//clientUser.serverType = "TerminusX"
16+
clientUser.serverType = "TerminusCMS"
1617
}catch(err){
1718
const lastuser = localStorage.getItem("Terminusdb-USER") //|| params.user
1819
clientUser = {email: lastuser }

packages/tdb-dashboard/src/components/ServerError.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ChangeUser } from "./ChangeUser"
66

77
export const ServerError = (props) => {
88
const {clientUser } = WOQLClientObj()
9-
const serverType = clientUser ? clientUser.serverType : "TerminusX"
9+
const serverType = clientUser ? clientUser.serverType : "TerminusCMS"
1010

1111
const gotoMainPage= ()=>{
1212
const base = process.env.BASE_URL ? `/${process.env.BASE_URL}` : "/"
@@ -27,7 +27,7 @@ export const ServerError = (props) => {
2727
Go to Teams
2828
</Button>}
2929
{clientUser.connection_type !=="LOCAL" &&
30-
<a href="https://discuss.terminusdb.com/" targert="_blank">
30+
<a href="https://www.reddit.com/r/TerminusDB/" targert="_blank">
3131
{`Please contact the ${serverType} Team`}
3232
</a>
3333
}

packages/tdb-dashboard/src/components/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {GrGraphQl} from "react-icons/gr"
1111
import {BiGitPullRequest} from "react-icons/bi"
1212

1313
//User Messages
14-
export const SERVER_LOADING_MESSAGE = "Setting up TerminusX Cloud ... "
14+
export const SERVER_LOADING_MESSAGE = "Setting up TerminusCMS ... "
1515
export const SCHEMA_LOADING_MESSAGE = "The schema being loaded... "
1616

1717

0 commit comments

Comments
 (0)