Skip to content
Snippets Groups Projects
Commit cd49e24b authored by vkovtun's avatar vkovtun
Browse files

SSDM-13839: Working on directory creation.

parent 9d3b9acb
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
</tr> </tr>
<tr> <tr>
<td><label>Is directory:</label></td> <td><label>Is directory:</label></td>
<td><input type="checkbox" id="create-directory"></td> <td><input type="checkbox" id="create-directory" value="true"></td>
</tr> </tr>
</table> </table>
<button id="create-submit">Create</button> <button id="create-submit">Create</button>
......
...@@ -225,7 +225,8 @@ window.onload = function() { ...@@ -225,7 +225,8 @@ window.onload = function() {
}; };
document.getElementById("create-submit").onclick = function() { document.getElementById("create-submit").onclick = function() {
datastoreServer.create(owner, document.getElementById("create-path").value.trim(), document.getElementById("create-directory").value, datastoreServer.create(owner, document.getElementById("create-path").value.trim(),
document.getElementById("create-directory").checked,
(_ => { (_ => {
showEntries(); showEntries();
})); }));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment