-
Notifications
You must be signed in to change notification settings - Fork 167
chore: disallow overriding of internal tool implementations #766
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
Changes from 3 commits
ea1a638
776c8e3
9cc5526
680d072
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,9 +30,9 @@ export const ConnectClusterArgs = { | |
| }; | ||
|
|
||
| export class ConnectClusterTool extends AtlasToolBase { | ||
| public name = "atlas-connect-cluster"; | ||
| static toolName = "atlas-connect-cluster"; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The static property
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TIL |
||
| protected description = "Connect to MongoDB Atlas cluster"; | ||
| public operationType: OperationType = "connect"; | ||
| static operationType: OperationType = "connect"; | ||
| protected argsShape = { | ||
| ...ConnectClusterArgs, | ||
| }; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.