]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/episodes/RestreamDialog.js
crew management
[alttp.git] / resources / js / components / episodes / RestreamDialog.js
index 340b3c311a8a21f78cece554bd4134c27234f65a..2b7454bbc7f7d73aa4dd4f0460e6462a73388af2 100644 (file)
@@ -8,7 +8,9 @@ import RestreamEditForm from './RestreamEditForm';
 
 const RestreamDialog = ({
        channel,
+       editRestream,
        episode,
+       manageCrew,
        onHide,
        onRemoveRestream,
        onSubmit,
@@ -25,7 +27,9 @@ const RestreamDialog = ({
                {channel ?
                        <RestreamEditForm
                                channel={channel}
+                               editRestream={editRestream}
                                episode={episode}
+                               manageCrew={manageCrew}
                                onCancel={onHide}
                                onRemoveRestream={onRemoveRestream}
                        />
@@ -42,8 +46,10 @@ const RestreamDialog = ({
 RestreamDialog.propTypes = {
        channel: PropTypes.shape({
        }),
+       editRestream: PropTypes.func,
        episode: PropTypes.shape({
        }),
+       manageCrew: PropTypes.func,
        onHide: PropTypes.func,
        onRemoveRestream: PropTypes.func,
        onSubmit: PropTypes.func,