michael / editable-website

A SvelteKit template for building CMS-free editable websites
https://editable.website
MIT License
1.34k stars 103 forks source link

Can I create its own Instance when we edit? #4

Open uuc110 opened 1 year ago

uuc110 commented 1 year ago

What I Mean is if Someone edit the website so now the edits is only for the person who edits and now the website belong to the user who changed it. so it can be like a website when anyone can take your website edit as it wish and then use it. but can we also do it as i said previously in italic, and we also get credit someone in footer or a pop up that this website is fork or copy of XYZ user. and no one can remove it unless the original owner of page permit the watermark to be removed.

nilskj commented 1 year ago

This should be possible but you need a multi user authentication setup, and extend the database schema to add references users. So I guess you might need these changes:

The "forking" as you describe would then be to copy a row in the database and set its userId to the new user, also store the original owner on it. Simple enough :)