mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 01:18:37 +00:00
Update Comment Table
This commit is contained in:
parent
3ae86faf66
commit
6cb5af2457
1 changed files with 3 additions and 2 deletions
|
|
@ -62,7 +62,7 @@ class Comment
|
|||
|
||||
foreach ($projects as $projectId => $project) {
|
||||
$text .= "**{$project['name']}** `{$projectId}`\n\n";
|
||||
$text .= "| Function | ID | Status | Build Logs |\n";
|
||||
$text .= "| Function | ID | Status | Action |\n";
|
||||
$text .= "| :- | :- | :- | :- |\n";
|
||||
|
||||
$protocol = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') == 'disabled' ? 'http' : 'https';
|
||||
|
|
@ -78,7 +78,8 @@ class Comment
|
|||
};
|
||||
//TODO: Update names of images
|
||||
|
||||
$logs = '[View output](' . $protocol . '://' . $hostname . '/console/project-' . $projectId . '/functions/function-' . $functionId . '/deployment-' . $function['deploymentId'] . ')';
|
||||
//TODO: Change View logs to Authorize for external contributors
|
||||
$logs = '[View Logs](' . $protocol . '://' . $hostname . '/console/project-' . $projectId . '/functions/function-' . $functionId . '/deployment-' . $function['deploymentId'] . ')';
|
||||
|
||||
$text .= "| {$function['name']} | `{$functionId}` | {$status} | {$logs} |\n";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue