feat: Implement action serializer

This commit is contained in:
Faruk AYDIN
2024-03-02 16:12:51 +01:00
parent 48141eb199
commit df2fbbabc6
3 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const actionSerializer = (action) => {
return {
name: action.name,
key: action.key,
description: action.description,
};
};
export default actionSerializer;