-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add externalApp actions to contextmenu & sidbar actions
- Loading branch information
1 parent
cc6cce4
commit 374ec67
Showing
10 changed files
with
838 additions
and
219 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,7 @@ | ||
Enhancement: Add AppProvider actions to fileactions | ||
|
||
If the AppProvider within oCIS communicates a fitting application | ||
for the mime type of a file, there are now additional actions in | ||
the default actions and actions in both the contextmenu and the right sidebar. | ||
|
||
https://github.com/owncloud/web/pull/5805 |
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
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
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
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,18 @@ | ||
export default { | ||
'application/fileFormat1': { | ||
app_providers: [ | ||
{ name: 'ExampleApp1Name', icon: 'https://www.example-app.com/assets/icon1.png' } | ||
] | ||
}, | ||
'application/fileFormat2': { | ||
app_providers: [ | ||
{ name: 'ExampleApp2Name', icon: 'https://www.example-app.com/assets/icon2.png' } | ||
] | ||
}, | ||
'application/fileFormat3': { | ||
app_providers: [ | ||
{ name: 'ExampleApp1Name', icon: 'https://www.example-app.com/assets/icon1.png' }, | ||
{ name: 'ExampleApp2Name', icon: 'https://www.example-app.com/assets/icon2.png' } | ||
] | ||
} | ||
} |
Oops, something went wrong.