├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build.yaml ├── Makefile ├── README.md ├── luasrc ├── controller │ └── nauta │ │ └── autologin.lua └── model │ └── cbi │ └── nauta │ └── nautalogin.lua ├── makefiles ├── OpenWRT.Makefile └── variables.Makefile └── root └── usr └── bin └── nauta_login /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/README.md -------------------------------------------------------------------------------- /luasrc/controller/nauta/autologin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/luasrc/controller/nauta/autologin.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/nauta/nautalogin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/luasrc/model/cbi/nauta/nautalogin.lua -------------------------------------------------------------------------------- /makefiles/OpenWRT.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/makefiles/OpenWRT.Makefile -------------------------------------------------------------------------------- /makefiles/variables.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/makefiles/variables.Makefile -------------------------------------------------------------------------------- /root/usr/bin/nauta_login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuza/luci-app-nauta/HEAD/root/usr/bin/nauta_login --------------------------------------------------------------------------------