review: fixed function name

This commit is contained in:
Wyatt Johnson
2018-10-31 17:57:21 -06:00
parent 092e707785
commit f39da1f76b
4 changed files with 8 additions and 8 deletions
@@ -1,4 +1,4 @@
import { reconstructTenantURL, reconstructURL } from "talk-server/app/url";
import { constructTenantURL, reconstructURL } from "talk-server/app/url";
import {
GQLOIDCAuthIntegration,
GQLOIDCAuthIntegrationTypeResolver,
@@ -19,7 +19,7 @@ const OIDCAuthIntegration: GQLOIDCAuthIntegrationTypeResolver<
// Note that when constructing the callback url with the tenant, the port
// information is lost.
return reconstructTenantURL(ctx.config, ctx.tenant, path);
return constructTenantURL(ctx.config, ctx.tenant, path);
},
};