forked from minetest-mods/craftguide
http_post_data -> export_url
This commit is contained in:
parent
70d38d1c63
commit
4241c89c17
2
API.md
2
API.md
|
@ -204,7 +204,7 @@ You can add a stereotype like so:
|
||||||
craftguide.group_stereotypes.radioactive = "mod:item"
|
craftguide.group_stereotypes.radioactive = "mod:item"
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `craftguide.http_post_data`
|
#### `craftguide.export_url`
|
||||||
|
|
||||||
If set, the mod will export all the cached recipes and usages in a JSON format
|
If set, the mod will export all the cached recipes and usages in a JSON format
|
||||||
to the given URL (HTTP support is required¹).
|
to the given URL (HTTP support is required¹).
|
||||||
|
|
4
init.lua
4
init.lua
|
@ -1438,7 +1438,7 @@ local function get_init_items()
|
||||||
handle_aliases(hash)
|
handle_aliases(hash)
|
||||||
sort(init_items)
|
sort(init_items)
|
||||||
|
|
||||||
if http and true_str(craftguide.http_post_data) then
|
if http and true_str(craftguide.export_url) then
|
||||||
local post_data = {
|
local post_data = {
|
||||||
recipes = recipes_cache,
|
recipes = recipes_cache,
|
||||||
usages = usages_cache,
|
usages = usages_cache,
|
||||||
|
@ -1446,7 +1446,7 @@ local function get_init_items()
|
||||||
}
|
}
|
||||||
|
|
||||||
http.fetch_async({
|
http.fetch_async({
|
||||||
url = craftguide.http_post_data,
|
url = craftguide.export_url,
|
||||||
post_data = write_json(post_data),
|
post_data = write_json(post_data),
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user