-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from xingkongwangbin/main
去掉时区
- Loading branch information
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
9 changes: 7 additions & 2 deletions
9
applications/luci-app-feishuvpn/luasrc/controller/feishuvpn.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
|
||
-- 定义luci.controller.feishuvpn模块 | ||
module("luci.controller.feishuvpn", package.seeall) | ||
|
||
-- index函数:配置FeiShuVpn的管理界面入口 | ||
function index() | ||
-- 创建admin/services/feishuvpn目录下的入口,重定向到config页面 | ||
-- dependent = true表示该入口依赖于其他服务 | ||
entry({"admin", "services", "feishuvpn"}, alias("admin", "services", "feishuvpn", "config"), _("FeiShuVpn"), 30).dependent = true | ||
|
||
-- 创建admin/services/feishuvpn/config页面,用于配置FeiShuVpn | ||
entry({"admin", "services", "feishuvpn", "config"}, cbi("feishuvpn")) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters