Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add default_application to MimeTypeInfo #157

Merged
merged 2 commits into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion cs3/app/registry/v1beta1/resources.proto
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ message MimeTypeInfo {
// OPTIONAL.
// Whether the mime type is eligible for file creation in the web UI.
// Defaults to false, i.e. files with this mime type can be opened
// but not directly allow_creationd from the web UI.
// but not directly created from the web UI.
bool allow_creation = 8;
// OPTIONAL.
// name of the default application to open this mime type
string default_application = 9;
}
8 changes: 8 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5695,6 +5695,14 @@ <h3 id="cs3.app.registry.v1beta1.MimeTypeInfo">MimeTypeInfo</h3>
but not directly allow_creationd from the web UI. </p></td>
</tr>

<tr>
<td>default_application</td>
<td><a href="#string">string</a></td>
<td></td>
<td><p>OPTIONAL.
name of the default application to open this mime type </p></td>
</tr>

</tbody>
</table>

Expand Down