From 98186e5018bbc604796d4f9762c93f4f75e2913f Mon Sep 17 00:00:00 2001 From: JoramWilander Date: Mon, 21 Sep 2015 14:22:23 -0400 Subject: Implement incoming webhooks. --- web/react/components/user_settings_developer.jsx | 93 ------------------------ 1 file changed, 93 deletions(-) delete mode 100644 web/react/components/user_settings_developer.jsx (limited to 'web/react/components/user_settings_developer.jsx') diff --git a/web/react/components/user_settings_developer.jsx b/web/react/components/user_settings_developer.jsx deleted file mode 100644 index 1b04149dc..000000000 --- a/web/react/components/user_settings_developer.jsx +++ /dev/null @@ -1,93 +0,0 @@ -// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. -// See License.txt for license information. - -var SettingItemMin = require('./setting_item_min.jsx'); -var SettingItemMax = require('./setting_item_max.jsx'); - -export default class DeveloperTab extends React.Component { - constructor(props) { - super(props); - - this.state = {}; - } - register() { - $('#user_settings1').modal('hide'); - $('#register_app').modal('show'); - } - render() { - var appSection; - var self = this; - if (this.props.activeSection === 'app') { - var inputs = []; - - inputs.push( -
-
- - {'Register New Application'} - -
-
- ); - - appSection = ( - - ); - } else { - appSection = ( - - ); - } - - return ( -
-
- -

- {'Developer Settings'} -

-
-
-

{'Developer Settings'}

-
- {appSection} -
-
-
- ); - } -} - -DeveloperTab.defaultProps = { - activeSection: '' -}; -DeveloperTab.propTypes = { - activeSection: React.PropTypes.string, - updateSection: React.PropTypes.func -}; -- cgit v1.2.3-1-g7c22