Link shares to the user, not the collective

The user is required when searching because of folders (sadly), so the
share is connected to the user.
This commit is contained in:
eikek
2021-10-23 23:29:36 +02:00
parent 9009ebcb39
commit 2ac0b84e52
17 changed files with 268 additions and 110 deletions

View File

@ -39,6 +39,8 @@ type alias Texts =
, noName : String
, shareInformation : String
, sendMail : String
, notOwnerInfo : String
, showOwningSharesOnly : String
}
@ -62,6 +64,8 @@ gb =
, noName = "No Name"
, shareInformation = "Share Information"
, sendMail = "Send via E-Mail"
, notOwnerInfo = "Only the user who created this share can edit its properties."
, showOwningSharesOnly = "Show my shares only"
}
@ -85,4 +89,6 @@ de =
, noName = "Ohne Name"
, shareInformation = "Informationen zur Freigabe"
, sendMail = "Per E-Mail versenden"
, notOwnerInfo = "Nur der Benutzer, der diese Freigabe erstellt hat, kann diese auch ändern."
, showOwningSharesOnly = "Nur meine Freigaben anzeigen"
}

View File

@ -21,6 +21,7 @@ type alias Texts =
, formatDateTime : Int -> String
, active : String
, publishUntil : String
, user : String
}
@ -30,6 +31,7 @@ gb =
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.English
, active = "Active"
, publishUntil = "Publish Until"
, user = "User"
}
@ -39,4 +41,5 @@ de =
, formatDateTime = DF.formatDateTimeLong Messages.UiLanguage.German
, active = "Aktiv"
, publishUntil = "Publiziert bis"
, user = "Benutzer"
}