<feed xmlns='http://www.w3.org/2005/Atom'>
<title>luci/applications/luci-app-acl/htdocs, branch master</title>
<subtitle>Lua Configuration Interface (mirror)</subtitle>
<id>https://git.openwrt.org/project/luci/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/luci/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/'/>
<updated>2026-02-16T01:29:45Z</updated>
<entry>
<title>luci-app: js linting fixes / ES6 treatment</title>
<updated>2026-02-16T01:29:45Z</updated>
<author>
<name>Paul Donald</name>
</author>
<published>2026-02-16T01:29:45Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=b07c6833de87f89a0b9b41c0c33a7d32bd314d58'/>
<id>urn:sha1:b07c6833de87f89a0b9b41c0c33a7d32bd314d58</id>
<content type='text'>
Signed-off-by: Paul Donald &lt;newtwen+github@gmail.com&gt;
</content>
</entry>
<entry>
<title>luci-app-acl: also grand read access to luci-mod-status-index</title>
<updated>2025-03-06T17:06:37Z</updated>
<author>
<name>Florian Eckert</name>
</author>
<published>2024-12-03T14:19:25Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=20bd9d223fcd9181607993fc4a5b949e64f9b9f6'/>
<id>urn:sha1:20bd9d223fcd9181607993fc4a5b949e64f9b9f6</id>
<content type='text'>
If a new user is created, 'luci-mod-status-index' should also be selected, as
this is the start page after login. If a user is created without this, only
a 404 is displayed.

Signed-off-by: Florian Eckert &lt;fe@dev.tdt.de&gt;
</content>
</entry>
<entry>
<title>treewide: replace "var m, s, o" with "let m, s, o"</title>
<updated>2024-12-03T15:25:21Z</updated>
<author>
<name>Sergey Ponomarev</name>
</author>
<published>2024-12-01T11:36:19Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=22d48305afcb3095468756f087610a091d69a116'/>
<id>urn:sha1:22d48305afcb3095468756f087610a091d69a116</id>
<content type='text'>
Signed-off-by: Sergey Ponomarev &lt;stokito@gmail.com&gt;
</content>
</entry>
<entry>
<title>luci-app-acl: remove support for plaintext login passwords</title>
<updated>2021-07-13T18:46:57Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2021-07-13T18:45:29Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=f74b06cb92e403fa281414d5a6bd57228858bfa7'/>
<id>urn:sha1:f74b06cb92e403fa281414d5a6bd57228858bfa7</id>
<content type='text'>
Upon reviewing the rpcd session support code, it turns out that account
definitions with plaintext password values are not supported, the password
value is treated as crypt() hash/salt in any case.

Ref: https://github.com/openwrt/luci/issues/5179
Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
<entry>
<title>luci-app-acl: ensure to set read/write ACL presets as uci lists</title>
<updated>2021-07-07T15:15:37Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2021-07-07T14:48:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=9922c838cd1abcda60f4e93b89b0c52a101fc667'/>
<id>urn:sha1:9922c838cd1abcda60f4e93b89b0c52a101fc667</id>
<content type='text'>
The rpcd daemon expects uci list notation for the login.read and login.write
options, so ensure to set them accordingly when chosing the `full access` or
`readonly` presets while configuring an account.

Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
<entry>
<title>luci-app-acl: unset read and write before acl set</title>
<updated>2021-07-01T06:13:35Z</updated>
<author>
<name>Florian Eckert</name>
</author>
<published>2021-06-30T12:58:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=f4e8fcb6b53780bd2d126b22a89c379cd7c071d7'/>
<id>urn:sha1:f4e8fcb6b53780bd2d126b22a89c379cd7c071d7</id>
<content type='text'>
If the setting in the view is set to `denied`, only the read list option
is deleted. This is not correct. The write list option must also be
deleted. To ensure that the correct configuration is saved, the write
and read list options are always deleted beforehand and then rewritten.

Signed-off-by: Florian Eckert &lt;fe@dev.tdt.de&gt;
</content>
</entry>
<entry>
<title>treewide: transition div tables to actual table markup</title>
<updated>2020-11-27T20:36:40Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2020-11-27T19:54:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=03c77dafe3cfb922b995adfe9c0f8a75c98a18af'/>
<id>urn:sha1:03c77dafe3cfb922b995adfe9c0f8a75c98a18af</id>
<content type='text'>
Modern browsers allow decomposing table markup equally well as nested div
constructs, therefor migrate our &lt;div&gt; table markup to actual &lt;table&gt; tags
but keep the old table/tr/th/td CSS classes for now to allow for a smooth
theme transition.

Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
<entry>
<title>luci-app-acl: fix typo</title>
<updated>2020-05-16T16:05:22Z</updated>
<author>
<name>Hannu Nyman</name>
</author>
<published>2020-05-16T16:05:22Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=b89e81e373cf8f1760462aac082d26d3cd0ecbaa'/>
<id>urn:sha1:b89e81e373cf8f1760462aac082d26d3cd0ecbaa</id>
<content type='text'>
Fix typo: Acess -&gt; Access

Signed-off-by: Hannu Nyman &lt;hannu.nyman@iki.fi&gt;
</content>
</entry>
<entry>
<title>luci-app-acl: add initial version of login management module</title>
<updated>2020-04-18T21:25:22Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2020-04-18T21:10:32Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/luci/commit/?id=82a469f75fef18d10518231c46e232b06496a6bf'/>
<id>urn:sha1:82a469f75fef18d10518231c46e232b06496a6bf</id>
<content type='text'>
Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
</feed>
