Skip to content

Commit a208f80

Browse files
committed
fix app reference
1 parent eb7f1c6 commit a208f80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/sailpoint/actions/submit-access-request/submit-access-request.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { REQUEST_TYPE_OPTIONS } from "../../common/constants.mjs";
2-
import identitynow from "../../identitynow.app.mjs";
2+
import sailpoint from "../../sailpoint.app.mjs";
33

44
export default {
55
key: "sailpoint-submit-access-request",
@@ -8,10 +8,10 @@ export default {
88
version: "0.0.1",
99
type: "action",
1010
props: {
11-
identitynow,
11+
sailpoint,
1212
requestedFor: {
1313
propDefinition: [
14-
identitynow,
14+
sailpoint,
1515
"requestedFor",
1616
],
1717
},
@@ -35,7 +35,7 @@ export default {
3535
},
3636
},
3737
async run({ $ }) {
38-
const response = await this.identitynow.submitAccessRequest({
38+
const response = await this.sailpoint.submitAccessRequest({
3939
$,
4040
data: {
4141
requestedFor: this.requestedFor,

0 commit comments

Comments
 (0)