mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
fix: Strip auth prop from page config in api.
This commit is contained in:
parent
c32a0dea16
commit
693667db5b
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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,
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user