-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add storage id to audit log for spaces
Signed-off-by: Christian Richter <[email protected]>
- Loading branch information
1 parent
8c89684
commit 53dcd93
Showing
3 changed files
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Enhancement: We added the storage id to the audit log for spaces | ||
|
||
We added the storage id to the audit log for spaces | ||
|
||
https://github.com/owncloud/ocis/pull/6548 | ||
https://github.com/owncloud/ocis/issues/3753 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package types | ||
|
||
import "strings" | ||
|
||
func SplitId(id string) (string, string) { | ||
ids := strings.Split(id, "$") | ||
return ids[0], ids[1] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters