mirror of
				https://github.com/kenzok8/openwrt-packages.git
				synced 2025-10-30 07:50:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			357 B
		
	
	
	
		
			Lua
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			357 B
		
	
	
	
		
			Lua
		
	
	
		
			Executable File
		
	
	
	
	
| -- Copyright (C) 2021 dz <dingzhong110@gmail.com>
 | |
| 
 | |
| module("luci.controller.easymesh", package.seeall)
 | |
| 
 | |
| function index()
 | |
| 	if not nixio.fs.access("/etc/config/easymesh") then
 | |
| 		return
 | |
| 	end
 | |
| 
 | |
| 	local page
 | |
| 
 | |
| 	page = entry({"admin", "network", "easymesh"}, cbi("easymesh"), _("EASY MESH"), 60)
 | |
| 	page.dependent = true
 | |
| 	page.acl_depends = { "luci-app-easymesh" }
 | |
| end
 | 
