Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MM-15324 override ephemeral post example #312

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions site/content/extend/plugins/webapp/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ The entry point `index.js` of your application might contain:
```javascript
import UserPopularity from './components/profile_popover/user_popularity';
import SomePost from './components/some_post';
import SomeEphemeralPost from './components/some_ephemeral_post';
import MenuIcon from './components/menu_icon';
import {openExampleModal} from './actions';

Expand All @@ -53,6 +54,10 @@ class PluginClass {
'custom_somepost',
SomePost,
);
registry.registerPostTypeComponent(
scottleedavis marked this conversation as resolved.
Show resolved Hide resolved
'custom_ephemeralpost',
SomeEphemeralPost,
);
registry.registerMainMenuAction(
'Plugin Menu Item',
() => store.dispatch(openExampleModal()),
Expand Down