{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":19256549,"defaultBranch":"master","name":"monster-ui-accounts","ownerLogin":"2600hz","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2014-04-28T22:47:54.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/408801?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1708472819.0","currentOid":""},"activityList":{"items":[{"before":"de9ba6dbe7b2eff583d4625b00acee7ccdcc05ab","after":null,"ref":"refs/heads/AXS-33","pushedAt":"2024-02-20T23:46:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"}},{"before":"c1a81ed1f9434647057a97f4584556be413132d0","after":null,"ref":"refs/heads/MSTR-275-5.3","pushedAt":"2023-12-19T21:29:48.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"}},{"before":"17ed5ce1ef3e74866f39d65887c8ae04df5c52f6","after":"961597b39f546431740abd65ddb15d358b941c62","ref":"refs/heads/5.3","pushedAt":"2023-12-19T21:29:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"},"commit":{"message":"[5.3] MSTR-275: do not require sub module, let core handle it (#195)\n\nIf the app assets is loading from external `source_url`, if the app tries to require its\r\nsub modules directly it will fail and the app won't load at all.\r\n\r\nChanging the module name to its external `source_url` as what Monster UI core was\r\npreviously doing won't always work in case the sub modules were small enough and optimized\r\naway in a single file as `app.js`. This has been observed with `branding` and\r\n`call-recording` apps so far.\r\n\r\nInstead we can explicitly config the paths for sub module and its external source url for\r\n`requirejs` to load it, if it is not already optimized in the `app.js`.\r\n\r\nWithout this change, because `app.js` is requiring the submodules, this URL will be used\r\ninstead of external source_url:\r\n\r\n```\r\nhttp://{monster_ui_url}/apps/:appname/submodules/{submodule}/{submodule}.js\r\n```\r\n\r\n`requireSubModule` from `monster.apps.js` will require all submodules\r\ndefined on the app and can adds external `source_url` of the sub module in requirejs\r\nconfig so the correct URL will be used for fetch if it is needed:\r\n\r\n```\r\nhttp://{app_metadata.source_url}/submodules/{submodule}/{submodule}.js\r\n```\r\n\r\nRead more: https://requirejs.org/docs/jquery.html#modulename","shortMessageHtmlLink":"[5.3] MSTR-275: do not require sub module, let core handle it (#195)"}},{"before":"cbd3fc359e87cea6c64e058ace1b37b98dba723b","after":null,"ref":"refs/heads/MSTR-275","pushedAt":"2023-12-19T21:23:34.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"}},{"before":"3f4c42fc749ed588dcd6c830bd6ffa3fc5de5f90","after":"6a4e389949e76e8175d4ed7661744827d8f64b42","ref":"refs/heads/master","pushedAt":"2023-12-19T21:23:33.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"},"commit":{"message":"MSTR-275: do not require sub module, let core handle it (#194)\n\nIf the app assets is loading from external `source_url`, if the app tries to require its\r\nsub modules directly it will fail and the app won't load at all.\r\n\r\nChanging the module name to its external `source_url` as what Monster UI core was\r\npreviously doing won't always work in case the sub modules were small enough and optimized\r\naway in a single file as `app.js`. This has been observed with `branding` and\r\n`call-recording` apps so far.\r\n\r\nInstead we can explicitly config the paths for sub module and its external source url for\r\n`requirejs` to load it, if it is not already optimized in the `app.js`.\r\n\r\nWithout this change, because `app.js` is requiring the submodules, this URL will be used\r\ninstead of external source_url:\r\n\r\n```\r\nhttp://{monster_ui_url}/apps/:appname/submodules/{submodule}/{submodule}.js\r\n```\r\n\r\n`requireSubModule` from `monster.apps.js` will require all submodules\r\ndefined on the app and can adds external `source_url` of the sub module in requirejs\r\nconfig so the correct URL will be used for fetch if it is needed:\r\n\r\n```\r\nhttp://{app_metadata.source_url}/submodules/{submodule}/{submodule}.js\r\n```\r\n\r\nRead more: https://requirejs.org/docs/jquery.html#modulename","shortMessageHtmlLink":"MSTR-275: do not require sub module, let core handle it (#194)"}},{"before":null,"after":"c1a81ed1f9434647057a97f4584556be413132d0","ref":"refs/heads/MSTR-275-5.3","pushedAt":"2023-12-12T01:43:48.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"},"commit":{"message":"do not require sub module, let core handle it\n\nIf the app assets is loading from external `source_url`, if the app tries to require its\nsub modules directly it will fail and the app won't load at all.\n\nChanging the module name to its external `source_url` as what Monster UI core was\npreviously doing won't always work in case the sub modules were small enough and optimized\naway in a single file as `app.js`. This has been observed with `branding` and\n`call-recording` apps so far.\n\nInstead we can explicitly config the paths for sub module and its external source url for\n`requirejs` to load it, if it is not already optimized in the `app.js`.\n\nWithout this change, because `app.js` is requiring the submodules, this URL will be used\ninstead of external source_url:\n\n```\nhttp://{monster_ui_url}/apps/:appname/submodules/{submodule}/{submodule}.js\n```\n\n`requireSubModule` from `monster.apps.js` will require all submodules\ndefined on the app and can adds external `source_url` of the sub module in requirejs\nconfig so the correct URL will be used for fetch if it is needed:\n\n```\nhttp://{app_metadata.source_url}/submodules/{submodule}/{submodule}.js\n```\n\nRead more: https://requirejs.org/docs/jquery.html#modulename","shortMessageHtmlLink":"do not require sub module, let core handle it"}},{"before":null,"after":"cbd3fc359e87cea6c64e058ace1b37b98dba723b","ref":"refs/heads/MSTR-275","pushedAt":"2023-12-12T00:20:01.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"icehess","name":"Hesaam Farhang","path":"/icehess","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4894215?s=80&v=4"},"commit":{"message":"do not require sub module, let core handle it\n\nIf the app assets is loading from external `source_url`, if the app tries to require its\nsub modules directly it will fail and the app won't load at all.\n\nChanging the module name to its external `source_url` as what Monster UI core was\npreviously doing won't always work in case the sub modules were small enough and optimized\naway in a single file as `app.js`. This has been observed with `branding` and\n`call-recording` apps so far.\n\nInstead we can explicitly config the paths for sub module and its external source url for\n`requirejs` to load it, if it is not already optimized in the `app.js`.\n\nWithout this change, because `app.js` is requiring the submodules, this URL will be used\ninstead of external source_url:\n\n```\nhttp://{monster_ui_url}/apps/:appname/submodules/{submodule}/{submodule}.js\n```\n\n`requireSubModule` from `monster.apps.js` will require all submodules\ndefined on the app and can adds external `source_url` of the sub module in requirejs\nconfig so the correct URL will be used for fetch if it is needed:\n\n```\nhttp://{app_metadata.source_url}/submodules/{submodule}/{submodule}.js\n```\n\nRead more: https://requirejs.org/docs/jquery.html#modulename","shortMessageHtmlLink":"do not require sub module, let core handle it"}},{"before":"be16d768cf95e25ab7abc1275daaf65c1176f509","after":null,"ref":"refs/heads/MACT-99-5.2","pushedAt":"2023-10-20T18:42:22.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"guillegr123","name":"Guillermo Gutiérrez","path":"/guillegr123","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/893877?s=80&v=4"}},{"before":"0cff5eefd937cdd35426d0fc0e3dec3e42ff46bb","after":"fc7d5b212750c53e575346a4d32ef07fc6c0af2c","ref":"refs/heads/5.2","pushedAt":"2023-10-20T18:42:21.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"guillegr123","name":"Guillermo Gutiérrez","path":"/guillegr123","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/893877?s=80&v=4"},"commit":{"message":"[5.2] MACT-99: Fix reseller data load on selected account (#193)\n\n* MACT-99: Fix issue where 'Account Sales Representative' section is not displayed (#189)\r\n\r\n* MACT-99: Fix issue where reseller_id not being sent for reseller accounts (#191)\r\n\r\n---------\r\n\r\nCo-authored-by: Pilar Candia ","shortMessageHtmlLink":"[5.2] MACT-99: Fix reseller data load on selected account (#193)"}},{"before":null,"after":"be16d768cf95e25ab7abc1275daaf65c1176f509","ref":"refs/heads/MACT-99-5.2","pushedAt":"2023-10-20T18:12:53.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"guillegr123","name":"Guillermo Gutiérrez","path":"/guillegr123","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/893877?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where reseller_id not being sent for reseller accounts (#191)","shortMessageHtmlLink":"MACT-99: Fix issue where reseller_id not being sent for reseller acco…"}},{"before":"804f6e544047481f9d734f389d2d6b5252a90796","after":null,"ref":"refs/heads/MACT-99-fix-5.3","pushedAt":"2023-10-17T15:01:11.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"}},{"before":"d565f69f0b211c21efc409a9072e17883b4a047e","after":"17ed5ce1ef3e74866f39d65887c8ae04df5c52f6","ref":"refs/heads/5.3","pushedAt":"2023-10-17T15:01:09.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"[5.3] MACT-99: Fix issue where reseller_id not being sent for reseller accounts (#192)","shortMessageHtmlLink":"[5.3] MACT-99: Fix issue where reseller_id not being sent for reselle…"}},{"before":"e79c3051f41f3bf4fef06fd3f4e825755a521be3","after":null,"ref":"refs/heads/MACT-99-fix","pushedAt":"2023-10-17T15:00:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"}},{"before":"be9b71f15f25b5a8ddcc9b90d37f908499390c02","after":"3f4c42fc749ed588dcd6c830bd6ffa3fc5de5f90","ref":"refs/heads/master","pushedAt":"2023-10-17T15:00:35.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where reseller_id not being sent for reseller accounts (#191)","shortMessageHtmlLink":"MACT-99: Fix issue where reseller_id not being sent for reseller acco…"}},{"before":null,"after":"804f6e544047481f9d734f389d2d6b5252a90796","ref":"refs/heads/MACT-99-fix-5.3","pushedAt":"2023-10-17T02:37:02.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where reseller_id not being sent for reseller accounts","shortMessageHtmlLink":"MACT-99: Fix issue where reseller_id not being sent for reseller acco…"}},{"before":null,"after":"e79c3051f41f3bf4fef06fd3f4e825755a521be3","ref":"refs/heads/MACT-99-fix","pushedAt":"2023-10-17T02:35:57.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where reseller_id not being sent for reseller accounts","shortMessageHtmlLink":"MACT-99: Fix issue where reseller_id not being sent for reseller acco…"}},{"before":"3c70b89d9effc799a5434fd0f5e266177c4d6f8c","after":null,"ref":"refs/heads/MACT-99-5.3","pushedAt":"2023-10-16T19:50:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"}},{"before":"891565ffae93318b957a410a974f5e1636bdf9fd","after":"d565f69f0b211c21efc409a9072e17883b4a047e","ref":"refs/heads/5.3","pushedAt":"2023-10-16T19:50:51.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"[5.3] MACT-99: Fix issue where 'Account Sales Representative' section is not displayed (#190)","shortMessageHtmlLink":"[5.3] MACT-99: Fix issue where 'Account Sales Representative' section…"}},{"before":"5b3b2bd0ca9a1fd25c22ff412bdb807847d85e1d","after":null,"ref":"refs/heads/MACT-99","pushedAt":"2023-10-16T19:50:19.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"}},{"before":"0b0a992f502fe111c84435b0d28452f1b3ed136b","after":"be9b71f15f25b5a8ddcc9b90d37f908499390c02","ref":"refs/heads/master","pushedAt":"2023-10-16T19:50:18.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where 'Account Sales Representative' section is not displayed (#189)","shortMessageHtmlLink":"MACT-99: Fix issue where 'Account Sales Representative' section is no…"}},{"before":null,"after":"3c70b89d9effc799a5434fd0f5e266177c4d6f8c","ref":"refs/heads/MACT-99-5.3","pushedAt":"2023-10-16T19:48:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where 'Account Sales Representative' section is not displayed","shortMessageHtmlLink":"MACT-99: Fix issue where 'Account Sales Representative' section is no…"}},{"before":null,"after":"5b3b2bd0ca9a1fd25c22ff412bdb807847d85e1d","ref":"refs/heads/MACT-99","pushedAt":"2023-10-16T19:46:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pcandia","name":"Pilar Candia","path":"/pcandia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16088958?s=80&v=4"},"commit":{"message":"MACT-99: Fix issue where 'Account Sales Representative' section is not displayed","shortMessageHtmlLink":"MACT-99: Fix issue where 'Account Sales Representative' section is no…"}},{"before":"3769d2252791cebe5ef65d5d7b0d4845117d7aa3","after":"2c6b36a4add720931b1ebfe77652b297f69018c7","ref":"refs/heads/5.1","pushedAt":"2023-09-27T18:13:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"swysor","name":"Sean Wysor","path":"/swysor","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8356867?s=80&v=4"},"commit":{"message":"enable rockylinux support in circle-ci","shortMessageHtmlLink":"enable rockylinux support in circle-ci"}},{"before":"5a8b449d1dc17806860faa2580905a48e7cbf437","after":"3769d2252791cebe5ef65d5d7b0d4845117d7aa3","ref":"refs/heads/5.1","pushedAt":"2023-09-27T18:13:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"swysor","name":"Sean Wysor","path":"/swysor","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8356867?s=80&v=4"},"commit":{"message":"update shipyard config to support rockylinux","shortMessageHtmlLink":"update shipyard config to support rockylinux"}},{"before":"0b2e882500617885e8f698747b8073fb3e9fb6d7","after":"0cff5eefd937cdd35426d0fc0e3dec3e42ff46bb","ref":"refs/heads/5.2","pushedAt":"2023-09-25T14:41:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"swysor","name":"Sean Wysor","path":"/swysor","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8356867?s=80&v=4"},"commit":{"message":"enable rockylinux support in circle-ci","shortMessageHtmlLink":"enable rockylinux support in circle-ci"}},{"before":"b9083817d0531d9cd3e932b08ecb94d74a23c599","after":"0b2e882500617885e8f698747b8073fb3e9fb6d7","ref":"refs/heads/5.2","pushedAt":"2023-09-25T14:41:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"swysor","name":"Sean Wysor","path":"/swysor","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8356867?s=80&v=4"},"commit":{"message":"update shipyard config to support rockylinux","shortMessageHtmlLink":"update shipyard config to support rockylinux"}},{"before":"a77906b22ad132cdb10bc2f905820b8ff07ef3f3","after":"891565ffae93318b957a410a974f5e1636bdf9fd","ref":"refs/heads/5.3","pushedAt":"2023-08-31T14:05:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"swysor","name":"Sean Wysor","path":"/swysor","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8356867?s=80&v=4"},"commit":{"message":"enable rockylinux support in circle-ci","shortMessageHtmlLink":"enable rockylinux support in circle-ci"}},{"before":"eba548d50640e7825106ec572dd2918634af9c97","after":"a77906b22ad132cdb10bc2f905820b8ff07ef3f3","ref":"refs/heads/5.3","pushedAt":"2023-08-31T14:05:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"swysor","name":"Sean Wysor","path":"/swysor","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8356867?s=80&v=4"},"commit":{"message":"update shipyard config to support rockylinux","shortMessageHtmlLink":"update shipyard config to support rockylinux"}},{"before":"be435d785868a35ac6683c32513b062b1246a1bc","after":"eba548d50640e7825106ec572dd2918634af9c97","ref":"refs/heads/5.3","pushedAt":"2023-08-05T22:20:11.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"pklinus","name":null,"path":"/pklinus","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/51655963?s=80&v=4"},"commit":{"message":"Update .circleci/config.yml","shortMessageHtmlLink":"Update .circleci/config.yml"}},{"before":"c7f1fe0e84fa89fd2d3f924e57612a2fddda8bb4","after":"0b0a992f502fe111c84435b0d28452f1b3ed136b","ref":"refs/heads/master","pushedAt":"2023-08-05T22:18:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"pklinus","name":null,"path":"/pklinus","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/51655963?s=80&v=4"},"commit":{"message":"Update .circleci/config.yml","shortMessageHtmlLink":"Update .circleci/config.yml"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEAEABPQA","startCursor":null,"endCursor":null}},"title":"Activity · 2600hz/monster-ui-accounts"}