Skip to content

Commit

Permalink
rename function
Browse files Browse the repository at this point in the history
  • Loading branch information
tenminus11 committed Oct 7, 2024
1 parent 4779200 commit 5709a17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps_script/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ function invokeEzyTf() {
invokeTfGeneration(invokeServiceAccount, cloudRunUrl, true);
}

function populateFoldersProjects() {
function listFoldersProjects() {
populateFoldersProjects("folders", "_FoldersProjectPath");
}

function fetchRolesToSheet() {
function listRolesToSheet() {
fetchRolesToSheet("_RolesList");
}

Expand All @@ -44,6 +44,6 @@ function onOpen(e) {
.addToUi();
SpreadsheetApp.getUi()
.createMenu("Custom Load")
.addItem("Folders & Project Path", "populateFoldersProjects")
.addItem("Folders & Project Path", "listFoldersProjects")
.addToUi();
}

0 comments on commit 5709a17

Please sign in to comment.