d8b471814f89438b395e79b29052bf7fc2574bd6
[librecmc/librecmc.git] / package / luci / applications / luci-app-adblock / luasrc / controller / adblock.lua
1 -- Copyright 2016 Openwrt.org
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.adblock", package.seeall)
5
6 function index()
7         if not nixio.fs.access("/etc/config/adblock") then
8                 return
9         end
10
11         entry({"admin", "services", "adblock"}, cbi("adblock"), _("Adblock"), 40)
12 end