can_reply_to

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "can_reply_to".
... in permissions.naml
189
190
191
192
193
194
195
196
197
198
<macro name="can_reply_to" requires="user" dot_parameter="node_attr">
    <n.set_local_user.this_user />
    <n.set_local_node.node_attr/>
    <n.block.>
        <n.both>
            <condition1.not.local_user.is_banned/>
            <condition2.local_user.has_permission node="[n.local_node/]" permission_node="[n.local_node.topic_or_app/]" permission="[n.reply_permission/]" />
        </n.both>
    </n.block.>
</macro>