You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was thinking about writing a package like this one but with one additional feature : update the model table only when the changes are confirmed.
Problem
Imagine a blog where members can write articles, after the article is confirmed, it will be shown on the homepage.
But what if this member want to edit this article?
He update it and wait for the confirmation before the article will be shown on the homepage again (STRICT MODE).
Solution
In order to avoid this "delay", when the article is updated by the member, into the database it shouldn't be modified before the post is confirmed. Instead, a new table should save the updated object and wait for confirmation.
Hope you understood me.
The text was updated successfully, but these errors were encountered:
I was thinking about writing a package like this one but with one additional feature : update the model table only when the changes are confirmed.
Problem
Imagine a blog where members can write articles, after the article is confirmed, it will be shown on the homepage.
But what if this member want to edit this article?
He update it and wait for the confirmation before the article will be shown on the homepage again (STRICT MODE).
Solution
In order to avoid this "delay", when the article is updated by the member, into the database it shouldn't be modified before the post is confirmed. Instead, a new table should save the updated object and wait for confirmation.
Hope you understood me.
The text was updated successfully, but these errors were encountered: