Skip to content

Commit

Permalink
Merge pull request #1019 from danrl/luci-app-e2guardian
Browse files Browse the repository at this point in the history
luci-app-e2guardian: add e2guardian application
  • Loading branch information
hnyman committed Feb 16, 2017
2 parents 7d3b3ef + c8ed8ad commit 13af69d
Show file tree
Hide file tree
Showing 3 changed files with 439 additions and 0 deletions.
18 changes: 18 additions & 0 deletions applications/luci-app-e2guardian/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# Copyright (C) 2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

LUCI_TITLE:=E2Guardian LuCI Interface
LUCI_DEPENDS:=+luci-mod-admin-full +e2guardian

PKG_MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>
PKG_LICENSE:=Apache-2.0

include ../../luci.mk

# call BuildPackage - OpenWrt buildroot signature
22 changes: 22 additions & 0 deletions applications/luci-app-e2guardian/luasrc/controller/e2guardian.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
--[[
LuCI E2Guardian module
Copyright (C) 2015, Itus Networks, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Author: Marko Ratkaj <marko.ratkaj@sartura.hr>
Luka Perkov <luka.perkov@sartura.hr>
]]--

module("luci.controller.e2guardian", package.seeall)

function index()
entry({"admin", "services", "e2guardian"}, cbi("e2guardian"), _("E2Guardian"))
end
Loading

0 comments on commit 13af69d

Please sign in to comment.