mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
39c2e5973b
* file uploads for plugins [WIP] * save plugin attachments * rename file->attachment, add size * rename file->attachment, add size * rename config type "file" to "attachment" * see already uploaded files * new config schema, add markdown support, move "disabled/enabled" switch up for visibility * hints via markdown * new plugin server * remove attachments * fix config serialization due to formdata * small fixes * help mypy * remove `isFormData` argument * remove debugger * consistent naming for add/remove attachment * remove unused params * extract plugin test http mock, create test for plugin/create, mark most fields as read-only * update github helloworldplugin zip with JS version of plugin * upgrade plugins * add auth test * test plugin repo and config * test plugin API attachment uploads * test plugin server status response * extract plugin config FormData method * fix mypy * use FakeRedis, not FakeStrictRedis * random try - add REDIS_URL to tests * try bad github action print debugging * try bad github action print debugging * plugin tests under multi tenancy * add fakeredis to CI FOSS test * remove prints * enable plugin tests if in EE
13 lines
234 B
JSON
13 lines
234 B
JSON
{
|
|
"name": "plugins",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"dependencies": {
|
|
"posthog-plugin-server": "0.2.0"
|
|
},
|
|
"scripts": {
|
|
"start": "posthog-plugin-server start"
|
|
}
|
|
}
|