summaryrefslogtreecommitdiffstats
path: root/webapp/components/backstage/installed_incoming_webhook.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-03-30 15:06:47 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-04-04 09:47:43 -0400
commit9fd7802af1a0f73039a66feaed30d8d230b065b6 (patch)
tree9a3308345afa463e6783846c0ecfdda7db3beb53 /webapp/components/backstage/installed_incoming_webhook.jsx
parent441156b91e9f9bac6b5592616551e2920c4cb33b (diff)
downloadchat-9fd7802af1a0f73039a66feaed30d8d230b065b6.tar.gz
chat-9fd7802af1a0f73039a66feaed30d8d230b065b6.tar.bz2
chat-9fd7802af1a0f73039a66feaed30d8d230b065b6.zip
Added 'Created by...' line in integration list
Diffstat (limited to 'webapp/components/backstage/installed_incoming_webhook.jsx')
-rw-r--r--webapp/components/backstage/installed_incoming_webhook.jsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/webapp/components/backstage/installed_incoming_webhook.jsx b/webapp/components/backstage/installed_incoming_webhook.jsx
index 262bfe21d..95a303edc 100644
--- a/webapp/components/backstage/installed_incoming_webhook.jsx
+++ b/webapp/components/backstage/installed_incoming_webhook.jsx
@@ -4,6 +4,7 @@
import React from 'react';
import ChannelStore from 'stores/channel_store.jsx';
+import * as Utils from 'utils/utils.jsx';
import {FormattedMessage} from 'react-intl';
@@ -52,6 +53,18 @@ export default class InstalledIncomingWebhook extends React.Component {
{incomingWebhook.description}
</span>
</div>
+ <div className='tem-details__row'>
+ <span className='item-details__creation'>
+ <FormattedMessage
+ id='installed_integrations.creation'
+ defaultMessage='Created by {creator} on {createAt, date, full}'
+ values={{
+ creator: Utils.displayUsername(incomingWebhook.user_id),
+ createAt: incomingWebhook.create_at
+ }}
+ />
+ </span>
+ </div>
</div>
<div className='item-actions'>
<a