@straiffi/archon 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Archon</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-kbsOL4Bp.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/rolldown-runtime-BYbx6iT9.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/badge-BentDQnz.js">
|
|
11
11
|
<link rel="stylesheet" crossorigin href="/assets/index-Dr_tNX7Y.css">
|
package/dist/server/index.js
CHANGED
|
@@ -2292,7 +2292,8 @@ app.get('/tickets/:id/git-status', (req, res) => {
|
|
|
2292
2292
|
if ('error' in workspace) {
|
|
2293
2293
|
return res.status(workspace.status).json({ error: workspace.error });
|
|
2294
2294
|
}
|
|
2295
|
-
|
|
2295
|
+
const refreshRemote = req.query.refresh_remote === 'true';
|
|
2296
|
+
return res.json(getGitStatus(workspace.cwd, workspace.branch, workspace.project, { refreshRemote }));
|
|
2296
2297
|
});
|
|
2297
2298
|
app.get('/tickets/:id/git-commits', (req, res) => {
|
|
2298
2299
|
const ticket = getTicketRouteContext(req.params.id);
|