[PR #265] [MERGED] Dev plugin #388

Closed
opened 2026-03-04 01:36:37 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/265
Author: @lts-po
Created: 1/17/2024
Status: Merged
Merged: 1/17/2024
Merged by: @lts-rad

Base: devHead: dev-plugin


📝 Commits (10+)

  • cd130fc [ui] custom plugins
  • 9b657db Merge branch 'dev' into dev-plugin
  • a8592f3 [ui] add route + link for custom plugin
  • 59bc732 Merge branch 'dev' into dev-plugin
  • 27adf33 [superd] Add Plus parameter for clones
  • 62bad86 [api] Add plugin install with GitURL provided a JWT OTP
  • 08742cc [api] [superd] Implement git URL install and auto config
  • 12ee8d9 [api] Fix plugin URIs
  • e0b827a [api] Also add the new plugin to the compose whitelist
  • f0a6ab6 [api] More descriptive status

📊 Changes

22 files changed (+1122 additions, -380 deletions)

View changed files

📝 RELEASE-NOTES.md (+8 -0)
📝 api/Dockerfile (+1 -0)
📝 api/code/api.go (+3 -2)
📝 api/code/auth.go (+54 -2)
📝 api/code/plugins.go (+186 -70)
📝 api/code/radios.go (+0 -1)
📝 frontend/src/AppContext.js (+3 -1)
📝 frontend/src/components/Auth/OTPValidate.js (+37 -46)
📝 frontend/src/components/Groups/GroupListing.js (+1 -16)
📝 frontend/src/components/Navbars/AdminNavbar.js (+12 -4)
frontend/src/components/Plugins/CustomPlugin.js (+5 -0)
frontend/src/components/Plugins/CustomPlugin.web.js (+86 -0)
frontend/src/components/Plugins/InstallPlugin.js (+154 -0)
📝 frontend/src/components/Plugins/PluginList.js (+58 -37)
📝 frontend/src/components/Sidebar/Sidebar.js (+6 -7)
📝 frontend/src/components/Wifi/WifiClients.js (+3 -0)
📝 frontend/src/layouts/Admin.js (+44 -6)
📝 frontend/src/routes.js (+8 -1)
frontend/src/views/CustomPlugin.js (+212 -0)
📝 frontend/src/views/Plugins.js (+5 -1)

...and 2 more files

📄 Description

Custom plugin support, API & frontend


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/spr-networks/super/pull/265 **Author:** [@lts-po](https://github.com/lts-po) **Created:** 1/17/2024 **Status:** ✅ Merged **Merged:** 1/17/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `dev` ← **Head:** `dev-plugin` --- ### 📝 Commits (10+) - [`cd130fc`](https://github.com/spr-networks/super/commit/cd130fcfdaf21e157d563a3b2893146f322ee821) [ui] custom plugins - [`9b657db`](https://github.com/spr-networks/super/commit/9b657dbb541a75ec20965ae051bf38c83b195af8) Merge branch 'dev' into dev-plugin - [`a8592f3`](https://github.com/spr-networks/super/commit/a8592f323b69ac49c0ed53f2b602803ac67ac82e) [ui] add route + link for custom plugin - [`59bc732`](https://github.com/spr-networks/super/commit/59bc732861701294290f419a9aad584c41fc7f9e) Merge branch 'dev' into dev-plugin - [`27adf33`](https://github.com/spr-networks/super/commit/27adf3332a84d05527b827220111cfb1051f5707) [superd] Add Plus parameter for clones - [`62bad86`](https://github.com/spr-networks/super/commit/62bad865aac171f9d57b66c37d7587dfa5f4b438) [api] Add plugin install with GitURL provided a JWT OTP - [`08742cc`](https://github.com/spr-networks/super/commit/08742cc4ecaf2c2c15b26ff0227873c253f52302) [api] [superd] Implement git URL install and auto config - [`12ee8d9`](https://github.com/spr-networks/super/commit/12ee8d934c5992e084fb0d822f18a7084ba0cd6c) [api] Fix plugin URIs - [`e0b827a`](https://github.com/spr-networks/super/commit/e0b827ae970014a50fc085fb8a591741b8fa7c72) [api] Also add the new plugin to the compose whitelist - [`f0a6ab6`](https://github.com/spr-networks/super/commit/f0a6ab64683caafecf263ebbd76c67d63cef44ab) [api] More descriptive status ### 📊 Changes **22 files changed** (+1122 additions, -380 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+8 -0) 📝 `api/Dockerfile` (+1 -0) 📝 `api/code/api.go` (+3 -2) 📝 `api/code/auth.go` (+54 -2) 📝 `api/code/plugins.go` (+186 -70) 📝 `api/code/radios.go` (+0 -1) 📝 `frontend/src/AppContext.js` (+3 -1) 📝 `frontend/src/components/Auth/OTPValidate.js` (+37 -46) 📝 `frontend/src/components/Groups/GroupListing.js` (+1 -16) 📝 `frontend/src/components/Navbars/AdminNavbar.js` (+12 -4) ➕ `frontend/src/components/Plugins/CustomPlugin.js` (+5 -0) ➕ `frontend/src/components/Plugins/CustomPlugin.web.js` (+86 -0) ➕ `frontend/src/components/Plugins/InstallPlugin.js` (+154 -0) 📝 `frontend/src/components/Plugins/PluginList.js` (+58 -37) 📝 `frontend/src/components/Sidebar/Sidebar.js` (+6 -7) 📝 `frontend/src/components/Wifi/WifiClients.js` (+3 -0) 📝 `frontend/src/layouts/Admin.js` (+44 -6) 📝 `frontend/src/routes.js` (+8 -1) ➕ `frontend/src/views/CustomPlugin.js` (+212 -0) 📝 `frontend/src/views/Plugins.js` (+5 -1) _...and 2 more files_ </details> ### 📄 Description Custom plugin support, API & frontend --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:36:37 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/super#388
No description provided.