mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
fix: correct spelling of 'oneuptime' in various files
This commit is contained in:
@@ -176,7 +176,7 @@ export class Service extends DatabaseService<Model> {
|
||||
await this.getWorkspaceUserIdFromOneUptimeUserId({
|
||||
projectId: data.projectId,
|
||||
workspaceType: data.workspaceType,
|
||||
oneupitmeUserId: userId,
|
||||
oneuptimeUserId: userId,
|
||||
});
|
||||
|
||||
if (workspaceUserId) {
|
||||
@@ -198,14 +198,14 @@ export class Service extends DatabaseService<Model> {
|
||||
public async getWorkspaceUserIdFromOneUptimeUserId(data: {
|
||||
projectId: ObjectID;
|
||||
workspaceType: WorkspaceType;
|
||||
oneupitmeUserId: ObjectID;
|
||||
oneuptimeUserId: ObjectID;
|
||||
}): Promise<string | null> {
|
||||
const userAuth: WorkspaceUserAuthToken | null =
|
||||
await WorkspaceUserAuthTokenService.findOneBy({
|
||||
query: {
|
||||
projectId: data.projectId,
|
||||
workspaceType: data.workspaceType,
|
||||
userId: data.oneupitmeUserId,
|
||||
userId: data.oneuptimeUserId,
|
||||
},
|
||||
select: {
|
||||
workspaceUserId: true,
|
||||
|
||||
@@ -163,7 +163,7 @@ const NotificationRuleForm: FunctionComponent<ComponentProps> = (
|
||||
required: true,
|
||||
description: `If your new channel name is "oneuptime-${props.eventType.toLowerCase()}-", then we will append the ${props.eventType} number in the end so, it'll look like "oneuptime-${props.eventType.toLowerCase()}-X".`,
|
||||
fieldType: FormFieldSchemaType.Text,
|
||||
placeholder: `oneupitme-${props.eventType.toLowerCase()}-`,
|
||||
placeholder: `oneuptime-${props.eventType.toLowerCase()}-`,
|
||||
},
|
||||
{
|
||||
field: {
|
||||
|
||||
@@ -4,6 +4,6 @@ This repository is used to host all the helm-charts for OneUptime.
|
||||
|
||||
### Helm Packages
|
||||
|
||||
- *oneuptime* : Chart for deploying OneUpitme app. [Read Docs here](oneuptime/README.md)
|
||||
- *oneuptime* : Chart for deploying OneUptime app. [Read Docs here](oneuptime/README.md)
|
||||
|
||||
|
||||
|
||||
@@ -16,5 +16,5 @@ You should then be able to access OneUptime cluster with that IP. Please make su
|
||||
We would like to hear your feedback to make this product better for you and for other users, please email us at hello@oneuptime.com.
|
||||
- If you notice a bug, we will fix it for you.
|
||||
- If you need a feature, we will add that to the roadmap and let you know the estimated time to ship.
|
||||
- If you are an enterprise customer, we offer dedicated engineering support to build oneupitme features you need to integrate OneUptime for your organization. Please contact us at sales@oneuptime.com
|
||||
- If you are an enterprise customer, we offer dedicated engineering support to build oneuptime features you need to integrate OneUptime for your organization. Please contact us at sales@oneuptime.com
|
||||
We would love to hear your feedback. Email: hello@oneuptime.com
|
||||
Reference in New Issue
Block a user