Mercurial Hosting > luan
view examples/blog/src/delete.luan @ 2092:429827024f4e ssltesting
inline local_https.sh + minor
| author | Violet7 |
|---|---|
| date | Fri, 12 Dec 2025 18:53:15 -0800 |
| parents | bc40bc9aab3a |
| children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local String = require "luan:String.luan" local to_number = String.to_number or error() local Http = require "luan:http/Http.luan" local Post = require "site:/lib/Post.luan" return function() local post_id = to_number(Http.request.parameters.post) or error() Post.delete_by_id(post_id) Http.response.send_redirect("/") end
