Skip to content

Commit

Permalink
fix endpoint name
Browse files Browse the repository at this point in the history
  • Loading branch information
olliejm committed Apr 3, 2020
1 parent 9e9b992 commit 7a8c6d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion activities/common/meeting-create.form
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ properties:
xtype: lookup
name: attendees
maxItems: !!int 19
url: /api/adenin.GateKeeper.Connector/MSGraph/people
url: /api/adenin.GateKeeper.Connector/ms-graph/people-search
required: !!bool true
daterange:
type: daterange
Expand Down
2 changes: 1 addition & 1 deletion activities/meeting-create.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ module.exports = async (activity) => {
var schema = yaml.safeLoad(fs.readFileSync(fname, 'utf8'));

// provide lookup url for attendees
schema.properties.attendees.url = activity.Context.connector.baseurl + "/people";
schema.properties.attendees.url = activity.Context.connector.baseurl + "/people-search";

return schema;
}
Expand Down

0 comments on commit 7a8c6d4

Please sign in to comment.