From bb6e8c62433c024c5c7db9d564bf6be2866f740d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 17 Jan 2025 11:56:38 +0100 Subject: [PATCH] userlog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- services/userlog/README.md | 4 ++-- services/userlog/pkg/service/service.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/userlog/README.md b/services/userlog/README.md index 5105e59dea..0df34137c9 100644 --- a/services/userlog/README.md +++ b/services/userlog/README.md @@ -38,7 +38,7 @@ For the time being, the configuration which user related events are of interest ## Retrieving -The `userlog` service provides an API to retrieve configured events. For now, this API is mostly following the [oc10 notification GET API](https://doc.owncloud.com/server/next/developer_manual/core/apis/ocs-notification-endpoint-v1.html#get-user-notifications). +The `userlog` service provides an API to retrieve configured events. For now, this API is mostly following the [oc10 notification GET API](https://docs.opencloud.eu/server/next/developer_manual/core/apis/ocs-notification-endpoint-v1.html#get-user-notifications). ## Posting @@ -72,7 +72,7 @@ For example, for the language `de`, one needs to place the corresponding transla -Important: For the time being, the embedded ownCloud Web frontend only supports the main language code but does not handle any territory. When strings are available in the language code `language_territory`, the web frontend does not see it as it only requests `language`. In consequence, any translations made must exist in the requested `language` to avoid a fallback to the default. +Important: For the time being, the embedded OpenCloud Web frontend only supports the main language code but does not handle any territory. When strings are available in the language code `language_territory`, the web frontend does not see it as it only requests `language`. In consequence, any translations made must exist in the requested `language` to avoid a fallback to the default. ### Translation Rules diff --git a/services/userlog/pkg/service/service.go b/services/userlog/pkg/service/service.go index 8256bd8507..5712a803e1 100644 --- a/services/userlog/pkg/service/service.go +++ b/services/userlog/pkg/service/service.go @@ -68,7 +68,7 @@ func NewUserlogService(opts ...Option) (*UserlogService, error) { valueClient: o.ValueClient, registeredEvents: make(map[string]events.Unmarshaller), tp: o.TraceProvider, - tracer: o.TraceProvider.Tracer("github.com/owncloud/ocis/services/userlog/pkg/service"), + tracer: o.TraceProvider.Tracer("github.com/opencloud-eu/opencloud/services/userlog/pkg/service"), publisher: o.Stream, filter: newUserlogFilter(o.Logger, o.ValueClient), }