sofietoft
f2ba4b1d4c
Removed mention of Umbraco.tv from the Members Dashboard ( #12429 )
...
* Removed mention of Umbraco.tv from the Members Dashboard
* Add new key to en.xml
* Update membersdashboardvideos.html
* Update label used in members dashboard.
2022-07-14 00:21:10 +02:00
Matt Brailsford
7d4a9caf6a
Allow dashboards to also be the "last accessed item" ( #12689 )
...
* Allow dashboards to also be the "last accessed item"
* Use tripple =
2022-07-13 23:08:44 +02:00
Nikolaj Geisle
bd2dd3e442
bumb version
2022-07-13 15:36:56 +02:00
Nikolaj Geisle
7f020861c2
Add ActivatorUtilitiesConstructor to ctor
2022-07-13 14:19:41 +02:00
Nikolaj Geisle
66cd2145ad
Reinstate old ctor and obsolete
2022-07-13 13:33:42 +02:00
Nikolaj Geisle
c6f1534148
Change delete action back to move
2022-07-13 13:11:30 +02:00
Nikolaj Geisle
3e464933fc
delete unused static leftover from merge
2022-07-13 11:14:51 +02:00
Nikolaj Geisle
b8ef3836a1
Fix formatting
2022-07-13 11:14:31 +02:00
Matthew Care
ce568343ab
Issue 12551 search bug
...
Previous optimisation incorrectly filtered the index fields needed to return published results
2022-07-13 11:13:35 +02:00
Nikolaj Geisle
af7d9db32b
Add missing null-check
2022-07-13 10:14:21 +02:00
Sebastiaan Janssen
f69f672b2c
Merge branch 'v10/contrib' into v10/dev
2022-07-12 14:53:12 +02:00
Sebastiaan Janssen
324f4c7168
Remove accidental merge problem
2022-07-12 14:52:46 +02:00
Sebastiaan Janssen
e516e3472c
Merge branch 'v10/contrib' into v10/dev
2022-07-12 14:50:50 +02:00
Johan Runsten
3778f0da7a
Bump ImageSharp to latest version ( #12651 )
2022-07-12 14:45:40 +02:00
Nikolaj Geisle
110d8067ad
Merge pull request #12682 from umbraco/v10/contrib
...
Merge `v10/contrib` into `v10/dev`
2022-07-12 08:23:45 +02:00
Sebastiaan Janssen
7611ba7f73
Remove undefined param
2022-07-11 15:50:58 +02:00
Sebastiaan Janssen
885ec99cc4
Fix breaking change in MenuItemList
2022-07-11 15:43:57 +02:00
Sebastiaan Janssen
942c4b336d
Fix formatting/style in DictionaryController
2022-07-11 15:43:57 +02:00
Daniël Knippers
611badfce2
Revert incorrect change in Property.PublishValues ( #12680 )
...
* Revert incorrect change in Property.PublishValues
Fix incorrect change made for nullability support which changes the result of the updated expression to `false` instead of `true` when both inputs are `null`.
That is, `null?.InvariantEquals(null) ?? false` becomes `false` but in the previous version it was `true` since the `InvariantEquals` extension method simply calls `string.Equals(v1, v2)` which will return `true` when both inputs are `null`. Due to the `?` operator the `InvariantEquals` method is not called anymore and `?? false` turns the expression to `false`.
* Update PropertyValidationService.cs
Reverts incorrect update for nullability that changes a value of `true` into `false` when both operands are `null`.
Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com >
2022-07-11 15:41:10 +02:00
Sebastiaan Janssen
e626fca243
Merge branch 'v10/dev' into v10/contrib
...
# Conflicts:
# src/Umbraco.Core/Actions/ActionAssignDomain.cs
# src/Umbraco.Core/Actions/ActionCopy.cs
# src/Umbraco.Core/Actions/ActionCreateBlueprintFromContent.cs
# src/Umbraco.Core/Actions/ActionDelete.cs
# src/Umbraco.Core/Actions/ActionMove.cs
# src/Umbraco.Core/Actions/ActionNew.cs
# src/Umbraco.Core/Actions/ActionNotify.cs
# src/Umbraco.Core/Actions/ActionProtect.cs
# src/Umbraco.Core/Actions/ActionRestore.cs
# src/Umbraco.Core/Actions/ActionRights.cs
# src/Umbraco.Core/Actions/ActionRollback.cs
# src/Umbraco.Core/Actions/ActionSort.cs
# src/Umbraco.Core/Actions/ActionToPublish.cs
# src/Umbraco.Core/Actions/ActionUnpublish.cs
# src/Umbraco.Core/Actions/ActionUpdate.cs
# src/Umbraco.Core/Constants-Telemetry.cs
# src/Umbraco.Core/DependencyInjection/ServiceCollectionExtensions.cs
# src/Umbraco.Core/DependencyInjection/UmbracoBuilder.CollectionBuilders.cs
# src/Umbraco.Core/DependencyInjection/UmbracoBuilder.Collections.cs
# src/Umbraco.Core/Models/Trees/ActionMenuItem.cs
# src/Umbraco.Core/Models/Trees/CreateChildEntity.cs
# src/Umbraco.Core/Models/Trees/ExportMember.cs
# src/Umbraco.Core/Models/Trees/MenuItem.cs
# src/Umbraco.Core/Models/Trees/RefreshNode.cs
# src/Umbraco.Core/Persistence/Repositories/IRedirectUrlRepository.cs
# src/Umbraco.Core/PropertyEditors/NestedContentConfiguration.cs
# src/Umbraco.Core/Routing/ContentFinderByRedirectUrl.cs
# src/Umbraco.Core/Services/IFileService.cs
# src/Umbraco.Core/Services/IRedirectUrlService.cs
# src/Umbraco.Core/Services/RedirectUrlService.cs
# src/Umbraco.Core/Trees/MenuItemList.cs
# src/Umbraco.Infrastructure/Persistence/Repositories/Implement/MemberRepository.cs
# src/Umbraco.Infrastructure/Persistence/Repositories/Implement/RedirectUrlRepository.cs
# src/Umbraco.Infrastructure/Telemetry/Providers/SystemInformationTelemetryProvider.cs
# src/Umbraco.Web.BackOffice/Controllers/CodeFileController.cs
# src/Umbraco.Web.BackOffice/Controllers/ContentController.cs
# src/Umbraco.Web.BackOffice/Controllers/DictionaryController.cs
# src/Umbraco.Web.BackOffice/Controllers/EntityController.cs
# src/Umbraco.Web.BackOffice/Controllers/PreviewController.cs
# src/Umbraco.Web.BackOffice/Trees/ContentBlueprintTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/ContentTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/ContentTreeControllerBase.cs
# src/Umbraco.Web.BackOffice/Trees/ContentTypeTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/DataTypeTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/DictionaryTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/FileSystemTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/MacrosTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/MediaTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/MediaTypeTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/MemberGroupTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/MemberTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/MemberTypeAndGroupTreeControllerBase.cs
# src/Umbraco.Web.BackOffice/Trees/RelationTypeTreeController.cs
# src/Umbraco.Web.BackOffice/Trees/TemplatesTreeController.cs
# src/Umbraco.Web.UI.Client/src/less/navs.less
# templates/UmbracoProject/.gitignore
# tests/Umbraco.Tests.Integration/Umbraco.Core/Telemetry/TelemetryServiceTests.cs
# tests/Umbraco.Tests.UnitTests/Umbraco.Core/Services/UserDataServiceTests.cs
# tests/Umbraco.Tests.UnitTests/Umbraco.Core/Telemetry/SystemInformationTelemetryProviderTests.cs
2022-07-11 15:04:46 +02:00
Nikolaj Geisle
38c42c2479
Update media picker to support readonly
2022-07-11 14:02:20 +02:00
Nikolaj Geisle
5bbb546780
Fix up UserGroup to map new property properly
2022-07-11 13:38:30 +02:00
Nikolaj Geisle
bba403cf3e
add hasAccessToAllLanguagus to AppendByGroup method
2022-07-11 10:44:25 +02:00
Nikolaj Geisle
0967505178
Fix up GetActions mapping
2022-07-11 10:37:25 +02:00
Nikolaj Geisle
a7f04924a0
Fix up frontend to send hasAccessToAllLanguages
2022-07-11 09:37:00 +02:00
Nikolaj Geisle
fccae2604f
Fix unit test
2022-07-11 09:26:28 +02:00
Nikolaj Geisle
5ff31cf966
Add hasAccessToAllLanguages to user groups and map
2022-07-11 09:15:26 +02:00
Arul Prabakaran
7c2a2996a2
Fixes alignment issue for "Saved searches" dropdown in log viewer ( #12665 )
...
* Umbraco avatar component updated to fit the image
* Fixed: Broken saved search dropdown in log viewer
2022-07-08 15:39:55 +01:00
Mads Rasmussen
d3dc2bae69
remove forgotten parenthesis
2022-07-08 09:07:14 +02:00
Mads Rasmussen
87d552bebb
Set form to dirty when updating user group permissions
2022-07-07 11:00:16 +02:00
Mads Rasmussen
4a1bccc58c
always set readonly attr if a property can not be updated
2022-07-07 10:22:15 +02:00
Mads Rasmussen
a63840a34e
Merge pull request #12664 from umbraco/v10/feature/variant-permissions-unlock-dialog
...
show unlock dialog on all variants as long as there is more than one …
2022-07-07 10:12:36 +02:00
Mads Rasmussen
11a670bbe4
add toggle to allow access to all languages
2022-07-07 09:36:34 +02:00
Niels Lyngsø
6fcb02c602
Merge remote-tracking branch 'origin/v10/feature/variant-permissions' into v10/feature/variant-permissions-unlock-dialog
...
# Conflicts:
# src/Umbraco.Web.UI.Client/src/less/components/umb-property-editor.less
plus some extra
2022-07-06 16:16:36 +02:00
Niels Lyngsø
51c537c2c2
show property actions
2022-07-06 15:44:27 +02:00
Ronald Barendse
4fc7f775ba
Merge pull request #12663 from umbraco/v10/bugfix/fix-automoq
...
V10: Fix AutoMoq for unit tests
2022-07-06 15:32:48 +02:00
Zeegaan
7d6d826a4a
Catch exception of UserGroup2Language database call
2022-07-06 15:24:41 +02:00
Zeegaan
b2f87f66fd
Fix up User repository
2022-07-06 15:08:37 +02:00
Niels Lyngsø
0daffd737e
unlock overlay styling
2022-07-06 15:05:45 +02:00
Niels Lyngsø
957042d117
show unlock dialog on all variants as long as there is more than one created variant
2022-07-06 15:05:31 +02:00
nikolajlauridsen
9c5006e5c8
Remove body from obsolete constructor
2022-07-06 14:53:57 +02:00
nikolajlauridsen
6d80904280
Make InstallHelper moq greedy
2022-07-06 14:52:00 +02:00
Zeegaan
7e5fc48a67
Add new hasAccessToAllLanguages migration
2022-07-06 14:26:10 +02:00
Zeegaan
49dd2b44e3
Add hasAccessToAllLanguages column to usergroup table
2022-07-06 14:11:19 +02:00
Zeegaan
91974a69f5
Update IReadOnlyUserGroup.cs
2022-07-06 13:49:42 +02:00
Zeegaan
ce6307c79a
Fix up DatabaseDataCreator.cs to not give sensitive data group permission to all languages
2022-07-06 13:46:54 +02:00
Zeegaan
9e849b1635
Add HasAccessToAllLanguages property to User Groups
2022-07-06 13:45:05 +02:00
Zeegaan
93654de9c2
Update GetLanguagePermissions to pull out proper backofficeUser if possible
2022-07-06 13:33:12 +02:00
Zeegaan
35845b25e5
Obsolete ctor
2022-07-06 13:17:19 +02:00
Zeegaan
696182bf6e
Update GetLanguagePermissions method
2022-07-06 13:02:33 +02:00