From 8e0ecded704213bf470d3d242fa99d01ff929f09 Mon Sep 17 00:00:00 2001
From: deityhub
Date: Thu, 18 Nov 2021 22:24:16 +0100
Subject: [PATCH] change fyipe to oneuptime, Fyipe to OneUptime, and fyipe.com
to oneuptime.com
---
dashboard/.env | 2 +-
dashboard/Dockerfile | 4 +-
dashboard/Dockerfile.dev | 4 +-
dashboard/README.md | 2 +-
dashboard/package-lock.json | 4 +-
dashboard/package.json | 2 +-
dashboard/public/assets/css/dashboard.css | 50 +++++++--------
dashboard/public/assets/css/newdashboard.css | 64 +++++++++----------
dashboard/public/assets/css/newdashobard2.css | 58 ++++++++---------
dashboard/public/assets/css/sail.css | 12 ++--
dashboard/public/index.html | 2 +-
dashboard/public/manifest.json | 8 +--
.../src/components/basic/PricingPlanModal.js | 5 +-
.../src/components/component/NewComponent.js | 6 +-
.../src/components/domains/VerifyDomain.js | 2 +-
.../components/emailTemplates/EmailSmtpBox.js | 4 +-
.../errorTracker/ErrorTrackerIssueTimeline.js | 2 +-
dashboard/src/components/fyipeApi/ApiDoc.js | 6 +-
.../components/incident/IncidentCreated.js | 10 +--
.../src/components/incident/IncidentList.js | 6 +-
.../incident/IncidentMessageThread.js | 8 +--
.../src/components/incident/IncidentStatus.js | 6 +-
.../incident/IncidentTimelineList.js | 2 +-
dashboard/src/components/modals/About.js | 11 ++--
.../components/modals/CreateMsTeamsWebhook.js | 2 +-
.../components/modals/CreateSlackWebhook.js | 2 +-
.../modals/EditContainerSecurity.js | 2 +-
.../components/modals/EditMsTeamsWebhook.js | 2 +-
.../src/components/modals/EditSlackWebhook.js | 2 +-
.../components/modals/IncomingRequestUrl.js | 3 +-
dashboard/src/components/modals/MonitorUrl.js | 2 +-
.../src/components/modals/ProbeDetail.js | 4 +-
.../modals/ViewApplicationLogKey.js | 4 +-
.../components/modals/ViewErrorTrackerKey.js | 6 +-
.../src/components/modals/inviteTeamMember.js | 6 +-
.../src/components/monitor/MonitorLogsList.js | 4 +-
.../src/components/monitor/NewMonitor.js | 2 +-
dashboard/src/components/nav/SideNavItem.js | 6 +-
.../notification/NotificationMenu.js | 12 ++--
.../components/paymentCard/CustomerBalance.js | 5 +-
.../performanceTracker/TrackerInfo.js | 4 +-
.../profileSettings/ChangePassword.js | 2 +-
.../src/components/project/ProjectForm.js | 2 +-
.../schedule/RenderSingleEscalation.js | 34 +++++-----
.../components/schedule/ScheduleProjectBox.js | 2 +-
.../scheduledEvent/ScheduledEventNote.js | 2 +-
.../security/ContainerSecurityForm.js | 2 +-
.../src/components/settings/APISettings.js | 2 +-
.../src/components/settings/ChangePlan.js | 4 +-
.../src/components/settings/SubProjects.js | 3 +-
.../src/components/smsTemplates/SmsSmtpBox.js | 2 +-
.../components/statusPage/EmbeddedBubble.js | 8 +--
.../statusPage/StatusPageSubscriber.js | 2 +-
.../statusPage/VerifyDomainModal.js | 2 +-
.../components/subscriber/subscriberList.js | 2 +-
.../components/webHooks/IncomingRequestBox.js | 2 +-
.../src/components/webHooks/MSTeamsBox.js | 2 +-
dashboard/src/components/webHooks/SlackBox.js | 2 +-
.../src/components/webHooks/WebHookBox.js | 4 +-
dashboard/src/config.js | 32 +++++-----
dashboard/src/index.js | 2 +-
dashboard/src/pages/ChangePassword.js | 6 +-
dashboard/src/pages/Consulting.js | 6 +-
dashboard/src/pages/FyipeApi.js | 2 +-
64 files changed, 243 insertions(+), 232 deletions(-)
diff --git a/dashboard/.env b/dashboard/.env
index c26c818803..cd818b713f 100644
--- a/dashboard/.env
+++ b/dashboard/.env
@@ -8,4 +8,4 @@ PUBLIC_URL=/dashboard
#IS_SAAS_SERVICE=true
REACT_APP_VERSION=$npm_package_version
REACT_APP_PUSHNOTIFICATION_PUBLIC_KEY=BFAPbOTTU14VbTe_dnoYlVnOPLKUNm8GYmC50n3i4Ps64sk1Xqx8e894Clrscn1L2PsQ8-l4SsJVw7NRg4cx69Y
-STATUSPAGE_DOMAIN=staging-statuspage.fyipe.com
\ No newline at end of file
+STATUSPAGE_DOMAIN=staging-statuspage.oneuptime.com
\ No newline at end of file
diff --git a/dashboard/Dockerfile b/dashboard/Dockerfile
index 3a9fbaf9a8..6deb3f1255 100755
--- a/dashboard/Dockerfile
+++ b/dashboard/Dockerfile
@@ -1,5 +1,5 @@
#
-# Fyipe Dockerfile
+# OneUptime Dockerfile
#
# Pull base image nodejs image.
@@ -32,7 +32,7 @@ RUN npm install purgecss -g
RUN npm run build
# Expose ports.
-# - 3000: Fyipe
+# - 3000: OneUptime
EXPOSE 3000
#Run the app
diff --git a/dashboard/Dockerfile.dev b/dashboard/Dockerfile.dev
index 6990a7f9b5..385f19c05c 100644
--- a/dashboard/Dockerfile.dev
+++ b/dashboard/Dockerfile.dev
@@ -1,5 +1,5 @@
#
-# Fyipe Docs Dockerfile
+# OneUptime Docs Dockerfile
#
# Pull base image nodejs image.
@@ -30,7 +30,7 @@ RUN npm ci --legacy-peer-deps
RUN mkdir -p node_modules/.cache && chmod -R 777 node_modules/.cache
# Expose ports.
-# - 1445: Fyipe Docs
+# - 1445: OneUptime Docs
EXPOSE 1445
#Run the app
diff --git a/dashboard/README.md b/dashboard/README.md
index d17526effd..71a3d11ca1 100755
--- a/dashboard/README.md
+++ b/dashboard/README.md
@@ -1,4 +1,4 @@
-# Fyipe Dashboard
+# OneUptime Dashboard
## Stack
diff --git a/dashboard/package-lock.json b/dashboard/package-lock.json
index e3f618126f..e6e4fb872d 100644
--- a/dashboard/package-lock.json
+++ b/dashboard/package-lock.json
@@ -1,11 +1,11 @@
{
- "name": "fyipe-dashboard",
+ "name": "oneuptime-dashboard",
"version": "3.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
- "name": "fyipe-dashboard",
+ "name": "oneuptime-dashboard",
"version": "3.0.0",
"hasInstallScript": true,
"dependencies": {
diff --git a/dashboard/package.json b/dashboard/package.json
index fabef6d7ee..abac7ebd3e 100755
--- a/dashboard/package.json
+++ b/dashboard/package.json
@@ -1,5 +1,5 @@
{
- "name": "fyipe-dashboard",
+ "name": "oneuptime-dashboard",
"version": "3.0.0",
"private": true,
"dependencies": {
diff --git a/dashboard/public/assets/css/dashboard.css b/dashboard/public/assets/css/dashboard.css
index 7842e47009..0b38fa0c4c 100755
--- a/dashboard/public/assets/css/dashboard.css
+++ b/dashboard/public/assets/css/dashboard.css
@@ -4083,12 +4083,12 @@ a.bs-ObjectList-row {
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+SWNvbjwvdGl0bGU+PGcgZmlsbD0iIzkzOURBMyIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIG9wYWNpdHk9Ii4zIiBjeD0iOSIgY3k9IjkiIHI9IjkiLz48cGF0aCBkPSJNMTMuMTU0IDQuNzM3TDcuNTIxIDEwLjU0bC0xLjQ1LTEuNTM3Yy0uNjg0LS41OTctMS43MDguMDg2LTEuMTk2Ljk0bDEuNzkzIDIuODE2Yy4yNTYuMzQxLjkzOC43NjggMS42MjEgMCAuMjU2LS4zNDIgNC43NzEtNi4yMjIgNC43NzEtNi4yMjIuNTk4LS43NjgtLjI1Ni0xLjM2Ni0uODUzLS44NTRsLjk0Ny0uOTQ3eiIvPjwvZz48L3N2Zz4=');
}
-.bs-ObjectList-row--rule--allow--fyipe .bs-ObjectList-cell:first-child {
+.bs-ObjectList-row--rule--allow--oneuptime .bs-ObjectList-cell:first-child {
background-size: 20px;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDE4YTggOCAwIDEgMCAwLTE2IDggOCAwIDAgMCAwIDE2em0zLTYuMjZjMCAxLjY0LTEuMzMgMi41OC0zLjI5IDIuNTgtLjgxIDAtMS42OC0uMTUtMi41NS0uNTJ2LTIuMThjLjc5LjQyIDEuNzcuNzMgMi41NS43My41MyAwIC44OC0uMTQuODgtLjU2QzEwLjYgMTAuNyA3IDExLjExIDcgOC42IDcgNi45NiA4LjMgNiAxMC4yMiA2Yy43OCAwIDEuNTcuMTIgMi4zNS40MnYyLjE1YTUuNDQgNS40NCAwIDAgMC0yLjM1LS41OWMtLjUgMC0uODMuMTQtLjgzLjUgMCAxLjAyIDMuNjEuNTQgMy42MSAzLjI2eiIgZmlsbD0iIzUwQTkyRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
}
-.bs-ObjectList-row--rule--allow--fyipe.bs-is-disabled .bs-ObjectList-cell:first-child {
+.bs-ObjectList-row--rule--allow--oneuptime.bs-is-disabled .bs-ObjectList-cell:first-child {
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDE4YTggOCAwIDEgMCAwLTE2IDggOCAwIDAgMCAwIDE2em0zLTYuMjZjMCAxLjY0LTEuMzMgMi41OC0zLjI5IDIuNTgtLjgxIDAtMS42OC0uMTUtMi41NS0uNTJ2LTIuMThjLjc5LjQyIDEuNzcuNzMgMi41NS43My41MyAwIC44OC0uMTQuODgtLjU2QzEwLjYgMTAuNyA3IDExLjExIDcgOC42IDcgNi45NiA4LjMgNiAxMC4yMiA2Yy43OCAwIDEuNTcuMTIgMi4zNS40MnYyLjE1YTUuNDQgNS40NCAwIDAgMC0yLjM1LS41OWMtLjUgMC0uODMuMTQtLjgzLjUgMCAxLjAyIDMuNjEuNTQgMy42MSAzLjI2eiIgZmlsbD0iI0I1QkJCRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
}
@@ -4100,12 +4100,12 @@ a.bs-ObjectList-row {
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+SWNvbjwvdGl0bGU+PGcgZmlsbD0iIzkzOURBMyIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIG9wYWNpdHk9Ii4zIiBjeD0iOSIgY3k9IjkiIHI9IjkiLz48cGF0aCBkPSJNOSAxMC4zMzNMMTEuNjY3IDEzIDEzIDExLjY2NyAxMC4zMzMgOSAxMyA2LjMzMyAxMS42NjcgNSA5IDcuNjY3IDYuMzMzIDUgNSA2LjMzMyA3LjY2NyA5IDUgMTEuNjY3IDYuMzMzIDEzeiIvPjwvZz48L3N2Zz4=');
}
-.bs-ObjectList-row--rule--block--fyipe .bs-ObjectList-cell:first-child {
+.bs-ObjectList-row--rule--block--oneuptime .bs-ObjectList-cell:first-child {
background-size: 20px;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDE4YTggOCAwIDEgMCAwLTE2IDggOCAwIDAgMCAwIDE2em0zLTYuMjZjMCAxLjY0LTEuMzMgMi41OC0zLjI5IDIuNTgtLjgxIDAtMS42OC0uMTUtMi41NS0uNTJ2LTIuMThjLjc5LjQyIDEuNzcuNzMgMi41NS43My41MyAwIC44OC0uMTQuODgtLjU2QzEwLjYgMTAuNyA3IDExLjExIDcgOC42IDcgNi45NiA4LjMgNiAxMC4yMiA2Yy43OCAwIDEuNTcuMTIgMi4zNS40MnYyLjE1YTUuNDQgNS40NCAwIDAgMC0yLjM1LS41OWMtLjUgMC0uODMuMTQtLjgzLjUgMCAxLjAyIDMuNjEuNTQgMy42MSAzLjI2eiIgZmlsbD0iI0UwNEM0QyIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
}
-.bs-ObjectList-row--rule--block--fyipe.bs-is-disabled .bs-ObjectList-cell:first-child {
+.bs-ObjectList-row--rule--block--oneuptime.bs-is-disabled .bs-ObjectList-cell:first-child {
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDE4YTggOCAwIDEgMCAwLTE2IDggOCAwIDAgMCAwIDE2em0zLTYuMjZjMCAxLjY0LTEuMzMgMi41OC0zLjI5IDIuNTgtLjgxIDAtMS42OC0uMTUtMi41NS0uNTJ2LTIuMThjLjc5LjQyIDEuNzcuNzMgMi41NS43My41MyAwIC44OC0uMTQuODgtLjU2QzEwLjYgMTAuNyA3IDExLjExIDcgOC42IDcgNi45NiA4LjMgNiAxMC4yMiA2Yy43OCAwIDEuNTcuMTIgMi4zNS40MnYyLjE1YTUuNDQgNS40NCAwIDAgMC0yLjM1LS41OWMtLjUgMC0uODMuMTQtLjgzLjUgMCAxLjAyIDMuNjEuNTQgMy42MSAzLjI2eiIgZmlsbD0iI0I1QkJCRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
}
@@ -4117,12 +4117,12 @@ a.bs-ObjectList-row {
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+SWNvbjwvdGl0bGU+PGcgZmlsbD0iIzkzOURBMyIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIG9wYWNpdHk9Ii4zIiBjeD0iOSIgY3k9IjkiIHI9IjkiLz48cGF0aCBkPSJNMTQuODQgOS40OTJjLjIxMy0uMzE0LjIxMy0uNjQyIDAtLjk4NEMxMi45MjQgNi4xNjkgMTAuOTggNSA5LjAwNyA1IDcuMDY0IDUgNS4xMjIgNi4xODQgMy4xOCA4LjU1Yy0uMjQuMzcyLS4yNC42ODUgMCAuOTQyYTEwLjUxNiAxMC41MTYgMCAwIDAgMi4xOTMgMi4xODJDNi42IDEyLjU1OCA3LjgxMSAxMyA5LjAwNyAxM2MxLjk3MyAwIDMuOTE3LTEuMTcgNS44MzMtMy41MDh6TTkgMTJhMyAzIDAgMSAwIDAtNiAzIDMgMCAwIDAgMCA2em0wLTEuNWExLjUgMS41IDAgMSAwIDAtMyAxLjUgMS41IDAgMCAwIDAgM3oiLz48L2c+PC9zdmc+');
}
-.bs-ObjectList-row--rule--review--fyipe .bs-ObjectList-cell:first-child {
+.bs-ObjectList-row--rule--review--oneuptime .bs-ObjectList-cell:first-child {
background-size: 20px;
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDE4YTggOCAwIDEgMCAwLTE2IDggOCAwIDAgMCAwIDE2em0zLTYuMjZjMCAxLjY0LTEuMzMgMi41OC0zLjI5IDIuNTgtLjgxIDAtMS42OC0uMTUtMi41NS0uNTJ2LTIuMThjLjc5LjQyIDEuNzcuNzMgMi41NS43My41MyAwIC44OC0uMTQuODgtLjU2QzEwLjYgMTAuNyA3IDExLjExIDcgOC42IDcgNi45NiA4LjMgNiAxMC4yMiA2Yy43OCAwIDEuNTcuMTIgMi4zNS40MnYyLjE1YTUuNDQgNS40NCAwIDAgMC0yLjM1LS41OWMtLjUgMC0uODMuMTQtLjgzLjUgMCAxLjAyIDMuNjEuNTQgMy42MSAzLjI2eiIgZmlsbD0iI0UwOTk0QyIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
}
-.bs-ObjectList-row--rule--review--fyipe.bs-is-disabled .bs-ObjectList-cell:first-child {
+.bs-ObjectList-row--rule--review--oneuptime.bs-is-disabled .bs-ObjectList-cell:first-child {
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDE4YTggOCAwIDEgMCAwLTE2IDggOCAwIDAgMCAwIDE2em0zLTYuMjZjMCAxLjY0LTEuMzMgMi41OC0zLjI5IDIuNTgtLjgxIDAtMS42OC0uMTUtMi41NS0uNTJ2LTIuMThjLjc5LjQyIDEuNzcuNzMgMi41NS43My41MyAwIC44OC0uMTQuODgtLjU2QzEwLjYgMTAuNyA3IDExLjExIDcgOC42IDcgNi45NiA4LjMgNiAxMC4yMiA2Yy43OCAwIDEuNTcuMTIgMi4zNS40MnYyLjE1YTUuNDQgNS40NCAwIDAgMC0yLjM1LS41OWMtLjUgMC0uODMuMTQtLjgzLjUgMCAxLjAyIDMuNjEuNTQgMy42MSAzLjI2eiIgZmlsbD0iI0I1QkJCRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
}
@@ -29979,7 +29979,7 @@ html.placeholder #login p.remember label {
}
}
-.register #fyipe-explanation {
+.register #oneuptime-explanation {
float: left;
width: 350px;
padding-left: 10px;
@@ -32044,13 +32044,13 @@ html[dir='rtl'] .select2-search-choice-close {
color: #fff;
}
-.cm-s-fyipe.CodeMirror {
+.cm-s-oneuptime.CodeMirror {
background-color: #fff;
color: #000000;
line-height: 1.4375;
}
-.cm-s-fyipe .CodeMirror-line, .cm-s-fyipe.CodeMirror pre {
+.cm-s-oneuptime .CodeMirror-line, .cm-s-oneuptime.CodeMirror pre {
padding: 0;
font-family: Source Code Pro, Courier New, Courier, monospace;
font-weight: 400;
@@ -32059,25 +32059,25 @@ html[dir='rtl'] .select2-search-choice-close {
line-height: 23px;
}
-.cm-s-fyipe .CodeMirror-gutters {
+.cm-s-oneuptime .CodeMirror-gutters {
border: none;
background-color: #fff;
}
-.cm-s-fyipe.cm-s-fyipe-readonly.CodeMirror, .cm-s-fyipe.cm-s-fyipe-readonly .CodeMirror-gutters {
+.cm-s-oneuptime.cm-s-oneuptime-readonly.CodeMirror, .cm-s-oneuptime.cm-s-oneuptime-readonly .CodeMirror-gutters {
background-color: rgba(246, 249, 252, 0.5);
}
-.cm-s-fyipe .CodeMirror-lines {
+.cm-s-oneuptime .CodeMirror-lines {
padding: 0;
}
-.cm-s-fyipe .CodeMirror-linenumbers {
+.cm-s-oneuptime .CodeMirror-linenumbers {
width: 56px;
background-color: transparent;
}
-.cm-s-fyipe .CodeMirror-linenumber {
+.cm-s-oneuptime .CodeMirror-linenumber {
font-family: Source Code Pro, Courier New, Courier, monospace;
font-size: 13px;
line-height: 22px;
@@ -32087,47 +32087,47 @@ html[dir='rtl'] .select2-search-choice-close {
color: #aab7c4;
}
-.cm-s-fyipe .CodeMirror-hscrollbar {
+.cm-s-oneuptime .CodeMirror-hscrollbar {
overflow-x: auto;
}
-.cm-s-fyipe .CodeMirror-guttermarker {
+.cm-s-oneuptime .CodeMirror-guttermarker {
color: #125b98;
}
-.cm-s-fyipe .CodeMirror-guttermarker-subtle {
+.cm-s-oneuptime .CodeMirror-guttermarker-subtle {
color: #cfd7df;
}
-.cm-s-fyipe .cm-string, .cm-s-fyipe .cm-string-2 {
+.cm-s-oneuptime .cm-string, .cm-s-oneuptime .cm-string-2 {
color: #24b47e;
}
-.cm-s-fyipe .cm-comment, .cm-s-fyipe .cm-punctuation, .cm-s-fyipe .cm-quote {
+.cm-s-oneuptime .cm-comment, .cm-s-oneuptime .cm-punctuation, .cm-s-oneuptime .cm-quote {
color: #aab7c4;
}
-.cm-s-fyipe .cm-keyword {
+.cm-s-oneuptime .cm-keyword {
color: #000000;
}
-.cm-s-fyipe .cm-builtin, .cm-s-fyipe .cm-number {
+.cm-s-oneuptime .cm-builtin, .cm-s-oneuptime .cm-number {
color: #e39f48;
}
-.cm-s-fyipe .CodeMirror-lint-mark-error, .cm-s-fyipe .db-QueryEditor-errorLine {
+.cm-s-oneuptime .CodeMirror-lint-mark-error, .cm-s-oneuptime .db-QueryEditor-errorLine {
background-color: hsla(8, 49%, 91%, 0.4);
}
-.cm-s-fyipe .db-QueryEditor-errorLine.CodeMirror-linebackground, .cm-s-fyipe .db-QueryEditor-errorLine .CodeMirror-linenumber.CodeMirror-gutter-elt {
+.cm-s-oneuptime .db-QueryEditor-errorLine.CodeMirror-linebackground, .cm-s-oneuptime .db-QueryEditor-errorLine .CodeMirror-linenumber.CodeMirror-gutter-elt {
background-color: transparent;
}
-.cm-s-fyipe .db-QueryEditor-errorLine .cm-atom, .cm-s-fyipe .db-QueryEditor-errorLine .cm-attribute, .cm-s-fyipe .db-QueryEditor-errorLine .cm-bracket, .cm-s-fyipe .db-QueryEditor-errorLine .cm-builtin, .cm-s-fyipe .db-QueryEditor-errorLine .cm-comment, .cm-s-fyipe .db-QueryEditor-errorLine .cm-def, .cm-s-fyipe .db-QueryEditor-errorLine .cm-hr, .cm-s-fyipe .db-QueryEditor-errorLine .cm-keyword, .cm-s-fyipe .db-QueryEditor-errorLine .cm-meta, .cm-s-fyipe .db-QueryEditor-errorLine .cm-number, .cm-s-fyipe .db-QueryEditor-errorLine .cm-operator, .cm-s-fyipe .db-QueryEditor-errorLine .cm-property, .cm-s-fyipe .db-QueryEditor-errorLine .cm-punctuation, .cm-s-fyipe .db-QueryEditor-errorLine .cm-qualifier, .cm-s-fyipe .db-QueryEditor-errorLine .cm-string, .cm-s-fyipe .db-QueryEditor-errorLine .cm-string-2, .cm-s-fyipe .db-QueryEditor-errorLine .cm-tag, .cm-s-fyipe .db-QueryEditor-errorLine .cm-variable, .cm-s-fyipe .db-QueryEditor-errorLine .cm-variable-2, .cm-s-fyipe .db-QueryEditor-errorLine .cm-variable-3 {
+.cm-s-oneuptime .db-QueryEditor-errorLine .cm-atom, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-attribute, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-bracket, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-builtin, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-comment, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-def, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-hr, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-keyword, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-meta, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-number, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-operator, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-property, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-punctuation, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-qualifier, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-string, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-string-2, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-tag, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-variable, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-variable-2, .cm-s-oneuptime .db-QueryEditor-errorLine .cm-variable-3 {
color: #e25950;
}
-.cm-s-fyipe.cm-s-fyipe-readonly .cm-atom, .cm-s-fyipe.cm-s-fyipe-readonly .cm-attribute, .cm-s-fyipe.cm-s-fyipe-readonly .cm-bracket, .cm-s-fyipe.cm-s-fyipe-readonly .cm-builtin, .cm-s-fyipe.cm-s-fyipe-readonly .cm-comment, .cm-s-fyipe.cm-s-fyipe-readonly .cm-def, .cm-s-fyipe.cm-s-fyipe-readonly .cm-hr, .cm-s-fyipe.cm-s-fyipe-readonly .cm-keyword, .cm-s-fyipe.cm-s-fyipe-readonly .cm-meta, .cm-s-fyipe.cm-s-fyipe-readonly .cm-number, .cm-s-fyipe.cm-s-fyipe-readonly .cm-operator, .cm-s-fyipe.cm-s-fyipe-readonly .cm-property, .cm-s-fyipe.cm-s-fyipe-readonly .cm-punctuation, .cm-s-fyipe.cm-s-fyipe-readonly .cm-qualifier, .cm-s-fyipe.cm-s-fyipe-readonly .cm-string, .cm-s-fyipe.cm-s-fyipe-readonly .cm-string-2, .cm-s-fyipe.cm-s-fyipe-readonly .cm-tag, .cm-s-fyipe.cm-s-fyipe-readonly .cm-variable, .cm-s-fyipe.cm-s-fyipe-readonly .cm-variable-2, .cm-s-fyipe.cm-s-fyipe-readonly .cm-variable-3, .cm-s-fyipe.cm-s-fyipe-readonly .CodeMirror-line, .cm-s-fyipe.cm-s-fyipe-readonly.CodeMirror pre {
+.cm-s-oneuptime.cm-s-oneuptime-readonly .cm-atom, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-attribute, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-bracket, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-builtin, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-comment, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-def, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-hr, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-keyword, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-meta, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-number, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-operator, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-property, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-punctuation, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-qualifier, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-string, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-string-2, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-tag, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-variable, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-variable-2, .cm-s-oneuptime.cm-s-oneuptime-readonly .cm-variable-3, .cm-s-oneuptime.cm-s-oneuptime-readonly .CodeMirror-line, .cm-s-oneuptime.cm-s-oneuptime-readonly.CodeMirror pre {
color: #000000;
}
diff --git a/dashboard/public/assets/css/newdashboard.css b/dashboard/public/assets/css/newdashboard.css
index 5faf25a921..d750d84fc2 100755
--- a/dashboard/public/assets/css/newdashboard.css
+++ b/dashboard/public/assets/css/newdashboard.css
@@ -3007,28 +3007,28 @@ html.db-NewChrome body {
.db-DashboardContentState--page {
min-height: 564px;
}
-.db-fyipesBackground,
-.db-fyipesBackground span {
+.db-oneuptimesBackground,
+.db-oneuptimesBackground span {
position: absolute;
}
-.db-fyipesBackground {
+.db-oneuptimesBackground {
width: 100%;
height: 100%;
transform: skewY(-12deg);
transform-origin: 0;
background: #008cdd;
}
-.db-fyipesBackground span {
+.db-oneuptimesBackground span {
height: 190px;
}
-.db-fyipesBackground :first-child {
+.db-oneuptimesBackground :first-child {
width: 100%;
height: 60px;
left: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.15);
}
-.db-fyipesBackground :nth-child(2) {
+.db-oneuptimesBackground :nth-child(2) {
width: 100%;
height: 105px;
right: 0;
@@ -3039,7 +3039,7 @@ html.db-NewChrome body {
hsla(0, 0%, 100%, 0) 75%
);
}
-.db-fyipesBackground :nth-child(3) {
+.db-oneuptimesBackground :nth-child(3) {
width: 70%;
height: 80px;
bottom: 0;
@@ -3050,7 +3050,7 @@ html.db-NewChrome body {
hsla(0, 0%, 100%, 0.25)
);
}
-.db-fyipesBackground :nth-child(4) {
+.db-oneuptimesBackground :nth-child(4) {
width: 35%;
height: 80px;
bottom: -80px;
@@ -4088,7 +4088,7 @@ div.db-Trend-groupChart {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
-.db-RadarRulesListUserName .db-RadarRulesListUserName-fyipeIcon {
+.db-RadarRulesListUserName .db-RadarRulesListUserName-oneuptimeIcon {
border-radius: 50%;
}
.db-RadarRulesListsItem-button {
@@ -4211,19 +4211,19 @@ div.db-Trend-groupChart {
position: relative;
z-index: 3;
}
-.db-fyipeElements {
+.db-oneuptimeElements {
display: flex;
margin-bottom: 8px;
margin-top: 8px;
width: 100%;
}
-.db-fyipeElements:first-child {
+.db-oneuptimeElements:first-child {
margin-top: 0;
}
-.db-fyipeElements:last-child {
+.db-oneuptimeElements:last-child {
margin-bottom: 0;
}
-.db-fyipeElements-field {
+.db-oneuptimeElements-field {
flex: 1 1 auto;
height: 28px;
margin-right: 8px;
@@ -4231,18 +4231,18 @@ div.db-Trend-groupChart {
width: 100%;
background-color: #fff !important;
}
-.db-fyipeElements-field:last-child {
+.db-oneuptimeElements-field:last-child {
margin-right: 0;
}
-.db-fyipeElements-button {
+.db-oneuptimeElements-button {
flex: 0 0 auto;
margin-left: 0;
margin-right: 8px;
}
-.db-fyipeElements-button:last-child {
+.db-oneuptimeElements-button:last-child {
margin-right: 0;
}
-.db-fyipeElements-dismiss {
+.db-oneuptimeElements-dismiss {
align-self: center;
display: flex;
padding: 0;
@@ -8895,23 +8895,23 @@ html.db-NewChrome .bs-ContentSection .bs-Tail--short {
.db-TransactionDetailPage-header {
display: inline;
}
-.db-fyipeTransfer {
+.db-oneuptimeTransfer {
justify-content: space-between;
}
-.db-fyipeTransfer,
-.db-fyipeTransfer-participant {
+.db-oneuptimeTransfer,
+.db-oneuptimeTransfer-participant {
display: flex;
flex-direction: row;
align-items: center;
}
-.db-fyipeTransfer-participant {
+.db-oneuptimeTransfer-participant {
max-width: 200px;
}
-.db-fyipeTransfer-name {
+.db-oneuptimeTransfer-name {
font-size: 15px;
font-weight: 500;
}
-.db-fyipeTransfer-arrow {
+.db-oneuptimeTransfer-arrow {
font-weight: 500;
}
.db-AddTopUpModal .bs-Fieldset-label {
@@ -10480,37 +10480,37 @@ html.db-NewChrome .bs-ContentSection .bs-Tail--short {
overflow: hidden;
position: relative;
}
-.db-InvoiceAction-fyipe {
+.db-InvoiceAction-oneuptime {
transform: skewx(-12deg) rotate(-12deg);
position: absolute;
width: 360px;
height: 80px;
}
-.db-InvoiceAction-fyipe--slateDark {
+.db-InvoiceAction-oneuptime--slateDark {
background: #000000;
}
-.db-InvoiceAction-fyipe--slateLight {
+.db-InvoiceAction-oneuptime--slateLight {
background: #8898aa;
}
-.db-InvoiceAction-fyipe--lightGradient {
+.db-InvoiceAction-oneuptime--lightGradient {
background: -webkit-linear-gradient(right, #24b47e, #3ecf8e 90%);
}
-.db-InvoiceAction-fyipe--top {
+.db-InvoiceAction-oneuptime--top {
left: -25px;
top: -40px;
opacity: 0.3;
}
-.db-InvoiceAction-fyipe--bottom {
+.db-InvoiceAction-oneuptime--bottom {
right: 0;
bottom: -20px;
width: 70px;
}
-.db-InvoiceAction-fyipe--lightSolid {
+.db-InvoiceAction-oneuptime--lightSolid {
background: #74e4a2;
bottom: -77px;
right: 0;
}
-.db-InvoiceAction-fyipe--darkSolid {
+.db-InvoiceAction-oneuptime--darkSolid {
background: #159570;
left: 0;
top: -97px;
@@ -11196,7 +11196,7 @@ table {
padding: 0;
font-weight: bold;
}
- .Notify-fyipe-row-primary {
+ .Notify-oneuptime-row-primary {
left: 0 !important;
}
.Checkbox.responsive {
diff --git a/dashboard/public/assets/css/newdashobard2.css b/dashboard/public/assets/css/newdashobard2.css
index 8bdc1789c3..a2eb84526e 100755
--- a/dashboard/public/assets/css/newdashobard2.css
+++ b/dashboard/public/assets/css/newdashobard2.css
@@ -2725,41 +2725,41 @@ html.db-NewChrome body{
.db-DashboardContentState--page{
min-height:564px
}
-.db-fyipesBackground,.db-fyipesBackground span{
+.db-oneuptimesBackground,.db-oneuptimesBackground span{
position:absolute
}
-.db-fyipesBackground{
+.db-oneuptimesBackground{
width:100%;
height:100%;
transform:skewY(-12deg);
transform-origin:0;
background:#008cdd
}
-.db-fyipesBackground span{
+.db-oneuptimesBackground span{
height:190px
}
-.db-fyipesBackground :first-child{
+.db-oneuptimesBackground :first-child{
width:100%;
height:60px;
left:0;
top:0;
background-color:rgba(0,0,0,.15)
}
-.db-fyipesBackground :nth-child(2){
+.db-oneuptimesBackground :nth-child(2){
width:100%;
height:105px;
right:0;
top:60px;
background:linear-gradient(150deg,rgba(92,92,92,.07) 15%,hsla(0,0%,100%,0) 75%)
}
-.db-fyipesBackground :nth-child(3){
+.db-oneuptimesBackground :nth-child(3){
width:70%;
height:80px;
bottom:0;
right:12%;
background:linear-gradient(150deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.25))
}
-.db-fyipesBackground :nth-child(4){
+.db-oneuptimesBackground :nth-child(4){
width:35%;
height:80px;
bottom:-80px;
@@ -3772,7 +3772,7 @@ div.db-Trend-groupChart{
border-bottom-left-radius:0;
border-top-left-radius:0
}
-.db-RadarRulesListUserName .db-RadarRulesListUserName-fyipeIcon{
+.db-RadarRulesListUserName .db-RadarRulesListUserName-oneuptimeIcon{
border-radius:50%
}
.db-RadarRulesListsItem-button{
@@ -3884,19 +3884,19 @@ div.db-Trend-groupChart{
position:relative;
z-index:3
}
-.db-fyipeElements{
+.db-oneuptimeElements{
display:flex;
margin-bottom:8px;
margin-top:8px;
width:100%
}
-.db-fyipeElements:first-child{
+.db-oneuptimeElements:first-child{
margin-top:0
}
-.db-fyipeElements:last-child{
+.db-oneuptimeElements:last-child{
margin-bottom:0
}
-.db-fyipeElements-field{
+.db-oneuptimeElements-field{
flex:1 1 auto;
height:28px;
margin-right:8px;
@@ -3904,18 +3904,18 @@ div.db-Trend-groupChart{
width:100%;
background-color:#fff!important
}
-.db-fyipeElements-field:last-child{
+.db-oneuptimeElements-field:last-child{
margin-right:0
}
-.db-fyipeElements-button{
+.db-oneuptimeElements-button{
flex:0 0 auto;
margin-left:0;
margin-right:8px
}
-.db-fyipeElements-button:last-child{
+.db-oneuptimeElements-button:last-child{
margin-right:0
}
-.db-fyipeElements-dismiss{
+.db-oneuptimeElements-dismiss{
align-self:center;
display:flex;
padding:0;
@@ -8273,22 +8273,22 @@ html.db-NewChrome .bs-ContentSection .bs-Tail--short{
.db-AuthorizationDetailPage-header,.db-TransactionDetailPage-header{
display:inline
}
-.db-fyipeTransfer{
+.db-oneuptimeTransfer{
justify-content:space-between
}
-.db-fyipeTransfer,.db-fyipeTransfer-participant{
+.db-oneuptimeTransfer,.db-oneuptimeTransfer-participant{
display:flex;
flex-direction:row;
align-items:center
}
-.db-fyipeTransfer-participant{
+.db-oneuptimeTransfer-participant{
max-width:200px
}
-.db-fyipeTransfer-name{
+.db-oneuptimeTransfer-name{
font-size:15px;
font-weight:500
}
-.db-fyipeTransfer-arrow{
+.db-oneuptimeTransfer-arrow{
font-weight:500
}
.db-AddTopUpModal .bs-Fieldset-label{
@@ -9434,37 +9434,37 @@ html.db-NewChrome .bs-ContentSection .bs-Tail--short{
overflow:hidden;
position:relative
}
-.db-InvoiceAction-fyipe{
+.db-InvoiceAction-oneuptime{
transform:skewx(-12deg) rotate(-12deg);
position:absolute;
width:360px;
height:80px
}
-.db-InvoiceAction-fyipe--slateDark{
+.db-InvoiceAction-oneuptime--slateDark{
background:#000000
}
-.db-InvoiceAction-fyipe--slateLight{
+.db-InvoiceAction-oneuptime--slateLight{
background:#8898aa
}
-.db-InvoiceAction-fyipe--lightGradient{
+.db-InvoiceAction-oneuptime--lightGradient{
background:-webkit-linear-gradient(right,#24b47e,#3ecf8e 90%)
}
-.db-InvoiceAction-fyipe--top{
+.db-InvoiceAction-oneuptime--top{
left:-25px;
top:-40px;
opacity:.3
}
-.db-InvoiceAction-fyipe--bottom{
+.db-InvoiceAction-oneuptime--bottom{
right:0;
bottom:-20px;
width:70px
}
-.db-InvoiceAction-fyipe--lightSolid{
+.db-InvoiceAction-oneuptime--lightSolid{
background:#74e4a2;
bottom:-77px;
right:0
}
-.db-InvoiceAction-fyipe--darkSolid{
+.db-InvoiceAction-oneuptime--darkSolid{
background:#159570;
left:0;
top:-97px
diff --git a/dashboard/public/assets/css/sail.css b/dashboard/public/assets/css/sail.css
index 0a4db25295..c6039c01dc 100755
--- a/dashboard/public/assets/css/sail.css
+++ b/dashboard/public/assets/css/sail.css
@@ -1361,7 +1361,7 @@
.Text-color--blue {
color: #000000;
}
-.Text-color--fyipeblue {
+.Text-color--oneuptimeblue {
color: #000000;
}
.Text-color--cyan {
@@ -5145,7 +5145,7 @@ img.image-small-circle{
transform: scale(1);
}
-.Notify-fyipe{
+.Notify-oneuptime{
display:grid;
grid-row-gap: 5px;
grid-template-columns: 10% 90%;
@@ -5153,28 +5153,28 @@ img.image-small-circle{
position: relative;
}
-.Notify-fyipe-row-primary{
+.Notify-oneuptime-row-primary{
grid-area: primary;
position: absolute;
top : 2px;
left : 15px;
}
-.Notify-fyipe-row-secondary{
+.Notify-oneuptime-row-secondary{
grid-area:secondary;
font-weight: 500;
font-size: 1em;
line-height: 1.5em;
}
-.Notify-fyipe-container-row-primary{
+.Notify-oneuptime-container-row-primary{
grid-area: primary;
position: absolute;
top : 2px;
left : 3px;
}
-.Notify-fyipe-container-row-secondary{
+.Notify-oneuptime-container-row-secondary{
grid-area:secondary;
font-weight: bold;
font-size: 1em;
diff --git a/dashboard/public/index.html b/dashboard/public/index.html
index dfb1cafd46..e5b601b516 100755
--- a/dashboard/public/index.html
+++ b/dashboard/public/index.html
@@ -15,7 +15,7 @@
- Fyipe Dashboard
+ OneUptime Dashboard
diff --git a/dashboard/public/manifest.json b/dashboard/public/manifest.json
index f376187ca0..54ec79fd0c 100755
--- a/dashboard/public/manifest.json
+++ b/dashboard/public/manifest.json
@@ -1,14 +1,14 @@
{
- "short_name": "Fyipe",
- "name": "Fyipe",
+ "short_name": "OneUptime",
+ "name": "OneUptime",
"icons": [
{
- "src": "/dashboard/assets/img/favicons/fyipe-pwa-icon-192x192.png",
+ "src": "/dashboard/assets/img/favicons/oneuptime-pwa-icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
- "src": "/dashboard/assets/img/favicons/fyipe-pwa-icon-512x512.png",
+ "src": "/dashboard/assets/img/favicons/oneuptime-pwa-icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
diff --git a/dashboard/src/components/basic/PricingPlanModal.js b/dashboard/src/components/basic/PricingPlanModal.js
index 96546e3d3d..3174f1ff57 100644
--- a/dashboard/src/components/basic/PricingPlanModal.js
+++ b/dashboard/src/components/basic/PricingPlanModal.js
@@ -120,7 +120,8 @@ class PricingPlanModal extends Component {
This feature is available on
Enterprise Plan. To upgrade to this
- plan, please contact sales@fyipe.com
+ plan, please contact
+ sales@oneuptime.com
) : (
@@ -243,7 +244,7 @@ class PricingPlanModal extends Component {
Contact Sales
diff --git a/dashboard/src/components/component/NewComponent.js b/dashboard/src/components/component/NewComponent.js
index 8fc8252790..989b4a8e95 100755
--- a/dashboard/src/components/component/NewComponent.js
+++ b/dashboard/src/components/component/NewComponent.js
@@ -180,9 +180,9 @@ class NewComponent extends Component {
Components are like containers that
- contain other Fyipe resources. For
- example: If you're trying to
- monitor your Home Page of your
+ contain other OneUptime resources.
+ For example: If you're trying
+ to monitor your Home Page of your
business, create a new container
called Home.
diff --git a/dashboard/src/components/domains/VerifyDomain.js b/dashboard/src/components/domains/VerifyDomain.js
index 0e4971fcc9..8e3d766fd5 100644
--- a/dashboard/src/components/domains/VerifyDomain.js
+++ b/dashboard/src/components/domains/VerifyDomain.js
@@ -151,7 +151,7 @@ class VerifyDomain extends Component {
- fyipe
+ oneuptime
diff --git a/dashboard/src/components/emailTemplates/EmailSmtpBox.js b/dashboard/src/components/emailTemplates/EmailSmtpBox.js
index 405262574a..3013a56e63 100755
--- a/dashboard/src/components/emailTemplates/EmailSmtpBox.js
+++ b/dashboard/src/components/emailTemplates/EmailSmtpBox.js
@@ -137,8 +137,8 @@ export class EmailSmtpBox extends Component {
Send emails via your SMTP server
- instead of Fyipe's default SMTP
- server.
+ instead of OneUptime's default
+ SMTP server.
diff --git a/dashboard/src/components/errorTracker/ErrorTrackerIssueTimeline.js b/dashboard/src/components/errorTracker/ErrorTrackerIssueTimeline.js
index 36d4dd5757..42181f1788 100644
--- a/dashboard/src/components/errorTracker/ErrorTrackerIssueTimeline.js
+++ b/dashboard/src/components/errorTracker/ErrorTrackerIssueTimeline.js
@@ -117,7 +117,7 @@ class ErrorTrackerIssueTimeline extends Component {
? timeline
.createdById
.name
- : 'Fyipe'}
+ : 'OneUptime'}
diff --git a/dashboard/src/components/fyipeApi/ApiDoc.js b/dashboard/src/components/fyipeApi/ApiDoc.js
index 2ece18e9c0..85a7ec1d32 100644
--- a/dashboard/src/components/fyipeApi/ApiDoc.js
+++ b/dashboard/src/components/fyipeApi/ApiDoc.js
@@ -16,13 +16,13 @@ function ApiDoc() {
/>
- Anything you do here on Fyipe Dashboard can also be
- done via the API.
+ Anything you do here on OneUptime Dashboard can also
+ be done via the API.
We have built an extensive RESTful API documentation
for you.
{' '}
diff --git a/dashboard/src/components/incident/IncidentCreated.js b/dashboard/src/components/incident/IncidentCreated.js
index 8801f8b776..b0d5a952f0 100644
--- a/dashboard/src/components/incident/IncidentCreated.js
+++ b/dashboard/src/components/incident/IncidentCreated.js
@@ -87,7 +87,7 @@ class IncidentCreated extends Component {
}}
key={notification._id}
>
-
+
-
-
-
+
+
+
#
{notification &&
@@ -136,7 +136,7 @@ class IncidentCreated extends Component {
)}
-
+
{incidents && incidents.length > 0 ? (
incidents.map((incident, i) => {
- let probeName = 'Fyipe';
+ let probeName = 'OneUptime';
let probeImage =
'/dashboard/assets/img/Fyipe.svg';
@@ -716,7 +716,7 @@ export class IncidentList extends Component {
alt=""
/>
- Fyipe
+ OneUptime
)
@@ -916,7 +916,7 @@ export class IncidentList extends Component {
alt=""
/>
- Fyipe
+ OneUptime
)
diff --git a/dashboard/src/components/incident/IncidentMessageThread.js b/dashboard/src/components/incident/IncidentMessageThread.js
index 041c29a0ce..fc67f5cd16 100644
--- a/dashboard/src/components/incident/IncidentMessageThread.js
+++ b/dashboard/src/components/incident/IncidentMessageThread.js
@@ -189,7 +189,7 @@ export class IncidentMessageThread extends Component {
? 'Zapier'
: incidentMessage.createdByApi
? 'API'
- : 'Fyiper'}
+ : 'OneUptime'}
@@ -488,7 +488,7 @@ export class IncidentMessageThread extends Component {
? 'Zapier'
: incidentMessage.createdByApi
? 'API'
- : 'Fyipe'}
+ : 'OneUptime'}
@@ -813,7 +813,7 @@ export class IncidentMessageThread extends Component {
.probeName
: incidentMessage.createdByApi
? 'API'
- : 'Fyipe'}
+ : 'OneUptime'}
@@ -1265,7 +1265,7 @@ export class IncidentMessageThread extends Component {
? incidentMessage
.userId
.name
- : 'Fyipe'}
+ : 'OneUptime'}
diff --git a/dashboard/src/components/incident/IncidentStatus.js b/dashboard/src/components/incident/IncidentStatus.js
index 2678598dae..8b02b58d10 100755
--- a/dashboard/src/components/incident/IncidentStatus.js
+++ b/dashboard/src/components/incident/IncidentStatus.js
@@ -1019,7 +1019,7 @@ export class IncidentStatus extends Component {
.probeName +
' probe'
) : (
- 'Fyipe'
+ 'OneUptime'
)}
@@ -1246,7 +1246,7 @@ export class IncidentStatus extends Component {
.incident
.acknowledgedByIncomingHttpRequest
? `Incoming HTTP Request ${this.props.incident.acknowledgedByIncomingHttpRequest.name}`
- : 'Fyipe'}
+ : 'OneUptime'}
) : (
) : (
{
? log
.createdById
.name
- : 'Fyipe'}
+ : 'OneUptime'}
)}
diff --git a/dashboard/src/components/modals/About.js b/dashboard/src/components/modals/About.js
index 8287259680..3d05ec2e9b 100644
--- a/dashboard/src/components/modals/About.js
+++ b/dashboard/src/components/modals/About.js
@@ -54,7 +54,8 @@ class About extends Component {
colSpan={2}
>
- Fyipe is a product of{' '}
+ OneUptime is a product
+ of{' '}
@@ -137,7 +138,7 @@ class About extends Component {
}}
>
@@ -159,7 +160,7 @@ class About extends Component {
}}
>
@@ -181,7 +182,7 @@ class About extends Component {
}}
>
diff --git a/dashboard/src/components/modals/CreateMsTeamsWebhook.js b/dashboard/src/components/modals/CreateMsTeamsWebhook.js
index 46fb666346..ba8b7fe11c 100644
--- a/dashboard/src/components/modals/CreateMsTeamsWebhook.js
+++ b/dashboard/src/components/modals/CreateMsTeamsWebhook.js
@@ -363,7 +363,7 @@ class CreateMsTeams extends React.Component {
{' '}
to check documentation on how to
integrate Microsoft Teams with
- Fyipe.
+ OneUptime.
diff --git a/dashboard/src/components/modals/CreateSlackWebhook.js b/dashboard/src/components/modals/CreateSlackWebhook.js
index 903cd6f2a3..946dde916d 100644
--- a/dashboard/src/components/modals/CreateSlackWebhook.js
+++ b/dashboard/src/components/modals/CreateSlackWebhook.js
@@ -361,7 +361,7 @@ class CreateSlack extends React.Component {
here
{' '}
to check documentation on how to
- integrate Slack with Fyipe.
+ integrate Slack with OneUptime.
diff --git a/dashboard/src/components/modals/EditContainerSecurity.js b/dashboard/src/components/modals/EditContainerSecurity.js
index c3dc0e79b0..90b16e2b85 100644
--- a/dashboard/src/components/modals/EditContainerSecurity.js
+++ b/dashboard/src/components/modals/EditContainerSecurity.js
@@ -247,7 +247,7 @@ class EditContainerSecurity extends Component {
type="text"
name="imagePath"
id="imagePath"
- placeholder="fyipeproject/home"
+ placeholder="oneuptimeproject/home"
disabled={
isRequesting
}
diff --git a/dashboard/src/components/modals/EditMsTeamsWebhook.js b/dashboard/src/components/modals/EditMsTeamsWebhook.js
index 1456249a7e..e2cf835c3d 100644
--- a/dashboard/src/components/modals/EditMsTeamsWebhook.js
+++ b/dashboard/src/components/modals/EditMsTeamsWebhook.js
@@ -364,7 +364,7 @@ class EditWebHook extends React.Component {
{' '}
to check documentation on how to
integrate Microsoft Teams with
- Fyipe.
+ OneUptime.
diff --git a/dashboard/src/components/modals/EditSlackWebhook.js b/dashboard/src/components/modals/EditSlackWebhook.js
index 2f1d5b25d1..9b12976925 100644
--- a/dashboard/src/components/modals/EditSlackWebhook.js
+++ b/dashboard/src/components/modals/EditSlackWebhook.js
@@ -361,7 +361,7 @@ class EditWebHook extends React.Component {
here
{' '}
to check documentation on how to
- integrate Slack with Fyipe.
+ integrate Slack with OneUptime.
diff --git a/dashboard/src/components/modals/IncomingRequestUrl.js b/dashboard/src/components/modals/IncomingRequestUrl.js
index cad385e734..8b64e60c7d 100644
--- a/dashboard/src/components/modals/IncomingRequestUrl.js
+++ b/dashboard/src/components/modals/IncomingRequestUrl.js
@@ -74,7 +74,8 @@ export class IncomingRequestUrl extends React.Component {
Please copy and paste the url below, in your
- external service to integrate it with Fyipe
+ external service to integrate it with
+ OneUptime
diff --git a/dashboard/src/components/modals/MonitorUrl.js b/dashboard/src/components/modals/MonitorUrl.js
index dbef42f92b..97b533dc7f 100755
--- a/dashboard/src/components/modals/MonitorUrl.js
+++ b/dashboard/src/components/modals/MonitorUrl.js
@@ -46,7 +46,7 @@ export class MonitorUrl extends React.Component {
Click to copy inbound URL?
-
- support@fyipe.com
+
+ support@oneuptime.com
{' '}
for more info.
diff --git a/dashboard/src/components/modals/ViewApplicationLogKey.js b/dashboard/src/components/modals/ViewApplicationLogKey.js
index 66719aa228..8cc14fd49c 100644
--- a/dashboard/src/components/modals/ViewApplicationLogKey.js
+++ b/dashboard/src/components/modals/ViewApplicationLogKey.js
@@ -78,7 +78,7 @@ class ViewApplicationLogKey extends Component {
Use your Log API ID and Log API
Key to log requests from your
- apps to your Fyipe Dashboard
+ apps to your OneUptime Dashboard
@@ -230,7 +230,7 @@ class ViewApplicationLogKey extends Component {
API Key will break
all your existing
integrations with
- the Fyipe Logger
+ the OneUptime Logger
Library
diff --git a/dashboard/src/components/modals/ViewErrorTrackerKey.js b/dashboard/src/components/modals/ViewErrorTrackerKey.js
index b3d51eb2dc..74d5d48d82 100644
--- a/dashboard/src/components/modals/ViewErrorTrackerKey.js
+++ b/dashboard/src/components/modals/ViewErrorTrackerKey.js
@@ -80,7 +80,7 @@ class ViewErrorTrackerKey extends Component {
and Error Tracker API Key to
track events happening in your
apps which are then sent to your
- Fyipe Dashboard
+ OneUptime Dashboard
@@ -233,8 +233,8 @@ class ViewErrorTrackerKey extends Component {
break all your
existing
integrations with
- the Fyipe Tracker
- Library
+ the OneUptime
+ Tracker Library
diff --git a/dashboard/src/components/modals/inviteTeamMember.js b/dashboard/src/components/modals/inviteTeamMember.js
index c72436b204..26fc25f19d 100755
--- a/dashboard/src/components/modals/inviteTeamMember.js
+++ b/dashboard/src/components/modals/inviteTeamMember.js
@@ -139,7 +139,7 @@ export class FormModal extends Component {
Please{' '}
diff --git a/dashboard/src/components/monitor/MonitorLogsList.js b/dashboard/src/components/monitor/MonitorLogsList.js
index 1674c0b77f..e51229fbb2 100644
--- a/dashboard/src/components/monitor/MonitorLogsList.js
+++ b/dashboard/src/components/monitor/MonitorLogsList.js
@@ -329,7 +329,7 @@ export class MonitorLogsList extends Component {
? log
.probeId
.probeName
- : 'Fyipe'}
+ : 'OneUptime'}
@@ -663,7 +663,7 @@ export class MonitorLogsList extends Component {
.props
.monitorType
)
- ? 'Fyipe'
+ ? 'OneUptime'
: 'Unknown Probe'}
diff --git a/dashboard/src/components/monitor/NewMonitor.js b/dashboard/src/components/monitor/NewMonitor.js
index 918b3c4646..3a03026fb4 100755
--- a/dashboard/src/components/monitor/NewMonitor.js
+++ b/dashboard/src/components/monitor/NewMonitor.js
@@ -907,7 +907,7 @@ class NewMonitor extends Component {
value: 'manual',
label: 'Manual',
description:
- 'Manual monitors do not monitor any resource. You can change monitor status by using Fyipe’s API. This is helpful when you use different monitoring tool but want to record monitor status on Fyipe.',
+ 'Manual monitors do not monitor any resource. You can change monitor status by using OneUptime’s API. This is helpful when you use different monitoring tool but want to record monitor status on OneUptime.',
icon:
'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNDI2LjY2NyA0MjYuNjY3IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0MjYuNjY3IDQyNi42Njc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxnPg0KCQk8cGF0aCBkPSJNMjEzLjMzMywwQzk1LjQ2NywwLDAsOTUuNDY3LDAsMjEzLjMzM3M5NS40NjcsMjEzLjMzMywyMTMuMzMzLDIxMy4zMzNTNDI2LjY2NywzMzEuMiw0MjYuNjY3LDIxMy4zMzNTMzMxLjIsMCwyMTMuMzMzLDANCgkJCXogTTIxMy4zMzMsMzg0Yy05NC4yOTMsMC0xNzAuNjY3LTc2LjM3My0xNzAuNjY3LTE3MC42NjdTMTE5LjA0LDQyLjY2NywyMTMuMzMzLDQyLjY2N1MzODQsMTE5LjA0LDM4NCwyMTMuMzMzDQoJCQlTMzA3LjYyNywzODQsMjEzLjMzMywzODR6Ii8+DQoJPC9nPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPC9zdmc+DQo=',
},
diff --git a/dashboard/src/components/nav/SideNavItem.js b/dashboard/src/components/nav/SideNavItem.js
index 56ec53d68f..da07a9d266 100755
--- a/dashboard/src/components/nav/SideNavItem.js
+++ b/dashboard/src/components/nav/SideNavItem.js
@@ -337,7 +337,7 @@ export class SidebarNavItem extends Component {
(isLinkActive ||
isSubLinkActive ||
isScheduleLinkActive
- ? ' Text-color--fyipeblue Text-fontWeight--bold'
+ ? ' Text-color--oneuptimeblue Text-fontWeight--bold'
: ' Text-color--dark')
}
>
@@ -498,7 +498,7 @@ export class SidebarNavItem extends Component {
@@ -549,7 +549,7 @@ export class SidebarNavItem extends Component {
incidentLogLink ===
active ||
isSubrouteActive
- ? 'Text-color--fyipeblue Text-fontWeight--bold'
+ ? 'Text-color--oneuptimeblue Text-fontWeight--bold'
: ''
}
>
diff --git a/dashboard/src/components/notification/NotificationMenu.js b/dashboard/src/components/notification/NotificationMenu.js
index bf5bbf3cae..e54f313de5 100755
--- a/dashboard/src/components/notification/NotificationMenu.js
+++ b/dashboard/src/components/notification/NotificationMenu.js
@@ -202,14 +202,14 @@ class NotificationMenu extends Component {
)
}
>
-
+
-
+
diff --git a/dashboard/src/components/performanceTracker/TrackerInfo.js b/dashboard/src/components/performanceTracker/TrackerInfo.js
index 704ac12a1b..a1d104464a 100644
--- a/dashboard/src/components/performanceTracker/TrackerInfo.js
+++ b/dashboard/src/components/performanceTracker/TrackerInfo.js
@@ -100,7 +100,7 @@ class TrackerInfo extends Component {
Use your performance tracker API
ID and API Key to track requests
- from your apps to your Fyipe
+ from your apps to your OneUptime
Dashboard
@@ -246,7 +246,7 @@ class TrackerInfo extends Component {
API Key will break
all your existing
integrations with
- the Fyipe
+ the OneUptime
Performance Metrics
Library
diff --git a/dashboard/src/components/profileSettings/ChangePassword.js b/dashboard/src/components/profileSettings/ChangePassword.js
index 8a977b7f11..cbc2efb325 100755
--- a/dashboard/src/components/profileSettings/ChangePassword.js
+++ b/dashboard/src/components/profileSettings/ChangePassword.js
@@ -74,7 +74,7 @@ export class ChangePasswordSetting extends Component {
We recommend you use password manager to
- store your Fyipe Password.
+ store your OneUptime Password.
diff --git a/dashboard/src/components/project/ProjectForm.js b/dashboard/src/components/project/ProjectForm.js
index 75939fdb58..02288c3492 100755
--- a/dashboard/src/components/project/ProjectForm.js
+++ b/dashboard/src/components/project/ProjectForm.js
@@ -155,7 +155,7 @@ class _ProjectForm extends React.Component {
To compare different pricing plans,
click{' '}
@@ -254,9 +255,10 @@ const RenderSingleEscalation = ({
alerted by SMS
if they do not
respond. After X
- reminders Fyipe
- will escalates
- this incident to
+ reminders
+ OneUptime will
+ escalates this
+ incident to
another team{' '}
@@ -295,9 +297,10 @@ const RenderSingleEscalation = ({
alerted by Email
if they do not
respond. After X
- reminders Fyipe
- will escalates
- this incident to
+ reminders
+ OneUptime will
+ escalates this
+ incident to
another team.{' '}
@@ -338,9 +341,10 @@ const RenderSingleEscalation = ({
notification if
they do not
respond. After X
- reminders Fyipe
- will escalates
- this incident to
+ reminders
+ OneUptime will
+ escalates this
+ incident to
another team.{' '}
@@ -436,7 +440,7 @@ const RenderSingleEscalation = ({
best-practices{' '}
here.
{' '}
@@ -580,7 +584,7 @@ const RenderSingleEscalation = ({
best-practices{' '}
here.
{' '}
@@ -590,7 +594,7 @@ const RenderSingleEscalation = ({
confused,
please email
us at
- support@fyipe.com
+ support@oneuptime.com
and
we'll
get back to
diff --git a/dashboard/src/components/schedule/ScheduleProjectBox.js b/dashboard/src/components/schedule/ScheduleProjectBox.js
index cb4e4744f2..0ab317a42e 100755
--- a/dashboard/src/components/schedule/ScheduleProjectBox.js
+++ b/dashboard/src/components/schedule/ScheduleProjectBox.js
@@ -68,7 +68,7 @@ const ScheduleProjectBox = props => {
IsAdminSubProject(props.subProject) ||
IsOwnerSubProject(props.subProject)
? "A Duty let's you connect members to monitors, so only members who are responsible for certain monitors are alerted."
- : 'When monitors go down, Fyipe alerts your team.'}
+ : 'When monitors go down, OneUptime alerts your team.'}
diff --git a/dashboard/src/components/scheduledEvent/ScheduledEventNote.js b/dashboard/src/components/scheduledEvent/ScheduledEventNote.js
index 7f9ce5494c..1b9417cdad 100644
--- a/dashboard/src/components/scheduledEvent/ScheduledEventNote.js
+++ b/dashboard/src/components/scheduledEvent/ScheduledEventNote.js
@@ -483,7 +483,7 @@ export class ScheduledEventNote extends Component {
'Started' ||
note.event_state ===
'Ended'
- ? 'Fyipe'
+ ? 'OneUptime'
: note.createdById &&
note
.createdById
diff --git a/dashboard/src/components/security/ContainerSecurityForm.js b/dashboard/src/components/security/ContainerSecurityForm.js
index 71280b68bd..2a21743e8c 100644
--- a/dashboard/src/components/security/ContainerSecurityForm.js
+++ b/dashboard/src/components/security/ContainerSecurityForm.js
@@ -234,7 +234,7 @@ class ContainerSecurityForm extends Component {
type="text"
name="imagePath"
id="imagePath"
- placeholder="fyipeproject/home"
+ placeholder="oneuptimeproject/home"
disabled={
addingContainer
}
diff --git a/dashboard/src/components/settings/APISettings.js b/dashboard/src/components/settings/APISettings.js
index 6d236364c7..b458cdb201 100755
--- a/dashboard/src/components/settings/APISettings.js
+++ b/dashboard/src/components/settings/APISettings.js
@@ -60,7 +60,7 @@ export class APISettings extends Component {
- API Keys
+ API Keys
diff --git a/dashboard/src/components/settings/ChangePlan.js b/dashboard/src/components/settings/ChangePlan.js
index a1222183fd..c37a995ea5 100755
--- a/dashboard/src/components/settings/ChangePlan.js
+++ b/dashboard/src/components/settings/ChangePlan.js
@@ -149,7 +149,9 @@ export class Plans extends Component {
- Change Fyipe Plan
+
+ Change OneUptime Plan
+
diff --git a/dashboard/src/components/settings/SubProjects.js b/dashboard/src/components/settings/SubProjects.js
index 27bcff45cf..6d7bbb2079 100755
--- a/dashboard/src/components/settings/SubProjects.js
+++ b/dashboard/src/components/settings/SubProjects.js
@@ -106,7 +106,8 @@ export class SubProjects extends Component {
Subprojects let’s you have
flexible access controls between
- Fyipe resources and your team.
+ OneUptime resources and your
+ team.
diff --git a/dashboard/src/components/smsTemplates/SmsSmtpBox.js b/dashboard/src/components/smsTemplates/SmsSmtpBox.js
index 5e0f091847..104e259639 100755
--- a/dashboard/src/components/smsTemplates/SmsSmtpBox.js
+++ b/dashboard/src/components/smsTemplates/SmsSmtpBox.js
@@ -115,7 +115,7 @@ export class SmsSmtpBox extends Component {
Send sms and calls via your
Twilio server instead of
- Fyipe's default Twilio
+ OneUptime's default Twilio
server.
diff --git a/dashboard/src/components/statusPage/EmbeddedBubble.js b/dashboard/src/components/statusPage/EmbeddedBubble.js
index 331a80a064..96b2d35acd 100644
--- a/dashboard/src/components/statusPage/EmbeddedBubble.js
+++ b/dashboard/src/components/statusPage/EmbeddedBubble.js
@@ -63,14 +63,14 @@ const css = colors => `