fix: Strip auth prop from page config in api.

This commit is contained in:
Sam Tolmay 2022-02-03 07:34:26 +02:00
parent c32a0dea16
commit 693667db5b
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0
2 changed files with 4 additions and 8 deletions

View File

@ -14,10 +14,12 @@
limitations under the License.
*/
// TODO: strip auth prop from page before we send it to the client
async function getPageConfig({ authorize, readConfigFile }, { pageId }) {
const pageConfig = await readConfigFile(`pages/${pageId}/${pageId}.json`);
if (pageConfig && authorize(pageConfig)) return pageConfig;
if (pageConfig && authorize(pageConfig)) {
delete pageConfig.auth;
return pageConfig;
}
return null;
}

View File

@ -40,9 +40,6 @@ test('getPageConfig, public', async () => {
const res = await getPageConfig(context, { pageId: 'pageId' });
expect(res).toEqual({
id: 'page:pageId',
auth: {
public: true,
},
});
});
@ -81,9 +78,6 @@ test('getPageConfig, protected, with user', async () => {
);
expect(res).toEqual({
id: 'page:pageId',
auth: {
public: false,
},
});
});