mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- Copyright 2018 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
 | 
						|
-- Licensed to the public under the Apache License 2.0.
 | 
						|
 | 
						|
module("luci.controller.quota", package.seeall)
 | 
						|
 | 
						|
function index()
 | 
						|
	if not nixio.fs.access("/etc/config/omr-quota") then
 | 
						|
		return
 | 
						|
	end
 | 
						|
	local page
 | 
						|
	page = entry({"admin", "network", "quota"}, cbi("quota/quota"), _("Quota"))
 | 
						|
	page.dependent = true
 | 
						|
end
 |