Skip to content

Commit 6df6126

Browse files
authored
Merge pull request #245 from intersystems/fix-interop-deployment
Fix interop deployment
2 parents 0bde722 + 14f8cba commit 6df6126

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Fixed
1111
- Link from WebUI to Settings page works properly (#230)
1212
- VSCode Web Views launch in external browser when connecting over unsecured connections (#227)
13-
- DTL/BPL editing through Studio reflected properly in source control
13+
- DTL/BPL editing through Studio reflected properly in source control (#241)
14+
- Plays nicely with interoperability "Deployment" features (#236)
1415
- `<PROTECT>` errors rendering menus as a user with limited privileges (%Developer + Ens*)
1516

1617
## [2.1.0] - 2023-01-23

cls/SourceControl/Git/Extension.cls

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Import SourceControl.Git
22

33
/// Main source control extension class, configured namespace-wide to enable use via VSCode and Studio
4-
Class SourceControl.Git.Extension Extends %Studio.Extension.Base
4+
Class SourceControl.Git.Extension Extends %Studio.SourceControl.Base
55
{
66

77
Parameter DOMAIN = "Studio";
@@ -328,5 +328,10 @@ Method GetStatus(ByRef InternalName As %String, ByRef IsInSourceControl As %Bool
328328
quit $$$OK
329329
}
330330

331+
/// Called to add an item to source control.
332+
Method AddToSourceControl(InternalName As %String, Description As %String = "") As %Status
333+
{
334+
Quit ##class(SourceControl.Git.Utils).AddToSourceControl(InternalName)
331335
}
332336

337+
}

0 commit comments

Comments
 (0)