Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
429049c
Allow userdefined order and start with drag and drop resorting
juliusknorr Jun 15, 2020
28a01a9
Design enhancements to panels, headings, and edit button
jancborchardt Jul 10, 2020
9cde198
More design fixes to dragging and edit panels
jancborchardt Jul 10, 2020
1448f54
Experiment with fade in dashboard panel header
jancborchardt Jul 10, 2020
0135eed
Dashboard: Adjust headings to new spacing for 44px icons
jancborchardt Jul 11, 2020
90f56dd
Replace vue-smoothdnd with vuedraggable
juliusknorr Jul 22, 2020
e25bab9
Set Dashboard as default app
jancborchardt Jul 21, 2020
4679926
Redirect to files app after login in acceptance tests
juliusknorr Jul 24, 2020
995144f
Dashboard: Fix small misalignment of widget header icon
jancborchardt Jul 31, 2020
da8a29f
Dashboard: Wording change from panels to widgets
jancborchardt Jul 31, 2020
5099a4f
Add binary attributes for dashboard bundles
juliusknorr Jul 27, 2020
c983094
WIP: drag and drop in modal
juliusknorr Jul 27, 2020
bd3d791
Only show display name if set
juliusknorr Jul 31, 2020
ae6be0c
Expose firstRun parameter to frontend
juliusknorr Jul 31, 2020
3be3c34
Status integration
juliusknorr Aug 4, 2020
7e2ded5
Fix default order of widgets
juliusknorr Aug 4, 2020
db86bea
Allow default app to be overwritten by user config
juliusknorr Aug 4, 2020
6accf4d
Fix default height
juliusknorr Aug 4, 2020
018be66
Refactor API to match the widget wording
juliusknorr Aug 4, 2020
d9dcd59
Load sidebar on dashboard
juliusknorr Aug 5, 2020
97feb89
Make header the drag handler
juliusknorr Aug 5, 2020
c97a805
Add first run hint
juliusknorr Aug 5, 2020
7399146
Dashboard: Fix full height of Widgets based on new component
jancborchardt Aug 4, 2020
44310d1
Add dashboard to app info xsd
juliusknorr Aug 5, 2020
61cc356
Fix php cs check
juliusknorr Aug 5, 2020
dbbc675
Fix drag behavior in modal
juliusknorr Aug 5, 2020
258cde1
Bump bundles
juliusknorr Aug 5, 2020
5a06e38
Dashboard app is disabled and there is no need to redirect to files app
MorrisJobke Aug 5, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Set Dashboard as default app
Signed-off-by: Jan C. Borchardt <[email protected]>
  • Loading branch information
jancborchardt authored and juliusknorr committed Aug 5, 2020
commit e25bab98b73e79f4ae131136e516b96fa5cfbdb4
2 changes: 1 addition & 1 deletion lib/private/legacy/OC_Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ public static function getDefaultPageUrl() {
} else {
$appId = 'files';
$config = \OC::$server->getConfig();
$defaultApps = explode(',', $config->getSystemValue('defaultapp', 'files'));
$defaultApps = explode(',', $config->getSystemValue('defaultapp', 'dashboard'));
// find the first app that is enabled for the current user
foreach ($defaultApps as $defaultApp) {
$defaultApp = OC_App::cleanAppId(strip_tags($defaultApp));
Expand Down