-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure_users_to_id.html
31 lines (29 loc) · 1.04 KB
/
azure_users_to_id.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script type="text/javascript">
RED.nodes.registerType('azure_users_to_id',{
category: 'authomize_azure',
color: '#a6bbcf',
defaults: {
name: {value:"Azure users to id"},
auth: { type: 'azure_config', required: true },
},
inputs:3,
outputs:1,
icon: "file.png",
label: function() {
return this.name||"azure_users_to_id";
}
});
</script>
<script type="text/html" data-template-name="azure_users_to_id">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-auth"><i class="fa fa-cogs"></i> AzureAD Credentials</label>
<input type="text" id="node-input-auth" placeholder="auth">
</div>
</script>
<script type="text/html" data-help-name="azure_users_to_id">
<p>Receives a list of users emails and returns a dictionary of user and email</p>
</script>