Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8d57c2c
update pinia-colada and pinia-colada devtools
andre8244 Jan 8, 2026
1d4bd67
show pinia-colada devtools on production environment
andre8244 Jan 8, 2026
544ccdc
fix style of system secret
andre8244 Jan 8, 2026
06bd0e2
fix system notes
andre8244 Jan 8, 2026
1a09f72
show pinia-colada devtools on production environment
andre8244 Jan 8, 2026
2d21781
add documentation link to top bar
andre8244 Jan 8, 2026
9f16b22
add kebab menu in system detail
andre8244 Jan 8, 2026
ed20b01
add restore system action
andre8244 Jan 8, 2026
1fe36d8
improve go to system button
andre8244 Jan 8, 2026
20ca26f
add suspend/reactivate user action
andre8244 Jan 9, 2026
6cd6510
improve users and roles
andre8244 Jan 15, 2026
4cf14e3
systems: add organization filter
andre8244 Jan 15, 2026
3ee56ed
show sort dropdown also on larger screens
andre8244 Jan 15, 2026
d223594
fix empty states and create buttons
andre8244 Jan 19, 2026
d01e916
fix
andre8244 Jan 20, 2026
808c9ed
fix
andre8244 Jan 20, 2026
42a3e46
fix
andre8244 Jan 20, 2026
3d71ae2
fix api names
andre8244 Jan 20, 2026
387514e
add application page (wip)
andre8244 Jan 21, 2026
a9525b7
add application page (wip)
andre8244 Jan 23, 2026
a3c8c4b
add application page (wip)
andre8244 Jan 27, 2026
56c3c9e
add application page (wip)
andre8244 Jan 27, 2026
23e6860
add application page (wip)
andre8244 Jan 28, 2026
9287965
add application page (wip)
andre8244 Jan 28, 2026
2d6f51d
add application page (wip)
andre8244 Jan 28, 2026
1f01d32
add application page (wip)
andre8244 Jan 28, 2026
42fe97a
fix organizations
andre8244 Feb 3, 2026
03ad922
add app version filter
andre8244 Feb 3, 2026
d6c7e2d
add app system filter
andre8244 Feb 3, 2026
0735e25
add application organization filter
andre8244 Feb 3, 2026
00327c8
add application logos
andre8244 Feb 4, 2026
4b91431
fix "no organization" in organization filter
andre8244 Feb 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/05-system-registration.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ MY_SYSTEM_SECRET=my_a1b2c3d4e5f6g7h8i9j0.k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6a7b8c9d
Administrators can view registration status:

1. Navigate to **Systems**
2. Find the system and click **View details**
2. Find the system and click **View**
3. Check fields:
- **System_key**: Now visible (was hidden before)
- **Subscription**: Shows timestamp
Expand Down
109 changes: 29 additions & 80 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
"@fortawesome/vue-fontawesome": "^3.0.8",
"@logto/vue": "^3.0.8",
"@nethesis/nethesis-light-svg-icons": "github:nethesis/Font-Awesome#ns-light",
"@nethesis/vue-components": "^3.4.0",
"@pinia/colada": "^0.17.6",
"@nethesis/nethesis-solid-svg-icons": "github:nethesis/Font-Awesome#ns-solid",
"@nethesis/vue-components": "^3.5.0",
"@pinia/colada": "^0.21.0",
"@tailwindcss/vite": "^4.1.10",
"@vueuse/core": "^13.4.0",
"axios": "^1.11.0",
Expand All @@ -40,7 +41,7 @@
"vue-router": "^4.5.0"
},
"devDependencies": {
"@pinia/colada-devtools": "^0.1.5",
"@pinia/colada-devtools": "^0.4.1",
"@tsconfig/node22": "^22.0.1",
"@types/lodash": "^4.17.18",
"@types/node": "^22.14.0",
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { useTitle } from '@vueuse/core'
import { PRODUCT_NAME } from './lib/config'
import { useI18n } from 'vue-i18n'
import ToastNotificationsArea from '@/components/ToastNotificationsArea.vue'
import { PiniaColadaDevtools } from '@pinia/colada-devtools'
import { PiniaColadaProdDevtools } from '@pinia/colada-devtools'
import { configureAxios } from './lib/axios'

const themeStore = useThemeStore()
Expand Down Expand Up @@ -55,7 +55,8 @@ onMounted(() => {
<RouterView v-else />
<ToastNotificationsArea />
</div>
<PiniaColadaDevtools />
<!-- <PiniaColadaDevtools /> //// -->
<PiniaColadaProdDevtools />
</template>

<style scoped></style>
Loading