Skip to content

Commit

Permalink
rewrite s3 file
Browse files Browse the repository at this point in the history
  • Loading branch information
Zwiterrion committed Jun 5, 2024
1 parent fdc1786 commit 6c5cdc3
Show file tree
Hide file tree
Showing 9 changed files with 270 additions and 165 deletions.
7 changes: 3 additions & 4 deletions server/datastores/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module.exports = class Datastore {
* @param {string} newHash
* @param {string} generateWasmName
*/
putWasmInformationsToS3(pluginId, newHash, generateWasmName) { return Promise.resolve() }
putWasmInformationsToS3(email, pluginId, newHash, generateWasmName) { return Promise.resolve() }

/**
* Fetch wasm from datastore
Expand Down Expand Up @@ -178,14 +178,13 @@ module.exports = class Datastore {
* Check if received link is valid and add plugin to the current user
* @param {string} pluginId
*/
acceptInvitation = (userId, ownerId, pluginId) => Promise.resolve()
acceptInvitation = (userId, pluginId) => Promise.resolve()

/**
* Get invitation informations
* @param {string} userId
* @param {string} ownerId
* @param {string} pluginId
* @returns
*/
getInvitation = (userId, ownerId, pluginId) => Promise.resolve()
getInvitation = (userId, pluginId) => Promise.resolve()
};
Loading

0 comments on commit 6c5cdc3

Please sign in to comment.