-
Notifications
You must be signed in to change notification settings - Fork 5
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
[Merged by Bors] - feat: add canEdit field to KB doc (VF-000) #466
Conversation
@@ -67,6 +67,7 @@ export interface KnowledgeBaseDocument { | |||
status: { | |||
type: KnowledgeBaseDocumentStatus; | |||
data?: unknown; | |||
canEdit?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should only be available on the TEXT type, can move it to KnowledgeBaseText
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information The version of Java (11.0.3) you have used to run this analysis is deprecated and we will stop accepting it soon. Please update to at least Java 17. |
bors r+ |
2 similar comments
bors r+ |
bors r+ |
bors ping |
pong |
<!-- You can erase any parts of this template not applicable to your Pull Request. --> **Fixes or implements CV3-588** ### Brief description. What is this change? Add a canEdit field to the status object on the KB document. This is differentiate between a plain text kb object where the text is editable and a TXT file upload which cannot be edited.
bors r+ |
Already running a review |
Pull request successfully merged into master. Build succeeded: |
Fixes or implements CV3-588
Brief description. What is this change?
Add a canEdit field to the status object on the KB document.
This is differentiate between a plain text kb object where the text is editable and a TXT file upload which cannot be edited.