Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 2091793

Browse files
committed
v1.3.1
1 parent b84b69a commit 2091793

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.1
2+
* Add Specialties API
3+
* Add Skills V2 API
4+
15
## 1.3.0
26
* Stop supporting deprecated Teamrooms API
37
* Migrate Workdiaries, Workdays and Snapshots API to v3

api/routers/metadata/metadata.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@ func (r a) GetSkills() (*http.Response, []byte) {
4646
return r.client.Get("/profiles/v1/metadata/skills", nil)
4747
}
4848

49+
// Get skills (V2)
50+
func (r a) GetSkillsV2() (*http.Response, []byte) {
51+
return r.client.Get("/profiles/v2/metadata/skills", nil)
52+
}
53+
54+
// Get specialties
55+
func (r a) GetSpecialties() (*http.Response, []byte) {
56+
return r.client.Get("/profiles/v1/metadata/specialties", nil)
57+
}
58+
4959
// Get regions
5060
func (r a) GetRegions() (*http.Response, []byte) {
5161
return r.client.Get("/profiles/v1/metadata/regions", nil)

0 commit comments

Comments
 (0)