mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
refactor: rename g-suite admin node to google workspace admin and update node icon (#4252)
This commit is contained in:
parent
6b538494ce
commit
2d4202d051
|
@ -10,7 +10,7 @@ const scopes = [
|
|||
export class GSuiteAdminOAuth2Api implements ICredentialType {
|
||||
name = 'gSuiteAdminOAuth2Api';
|
||||
extends = ['googleOAuth2Api'];
|
||||
displayName = 'G Suite Admin OAuth2 API';
|
||||
displayName = 'Google Workspace Admin OAuth2 API';
|
||||
documentationUrl = 'google';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
|
|
|
@ -18,16 +18,16 @@ import { groupFields, groupOperations } from './GroupDescripion';
|
|||
|
||||
export class GSuiteAdmin implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'G Suite Admin',
|
||||
displayName: 'Google Workspace Admin',
|
||||
name: 'gSuiteAdmin',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:gSuiteAdmin.png',
|
||||
icon: 'file:google-workspace-admin.png',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Consume G Suite Admin API',
|
||||
description: 'Consume Google Workspace Admin API',
|
||||
defaults: {
|
||||
name: 'G Suite Admin',
|
||||
name: 'Google Workspace Admin',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
|
|
|
@ -186,7 +186,7 @@ export const groupFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description:
|
||||
"The unique ID for the customer's G Suite account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.",
|
||||
"The unique ID for the customer's Google Workspace account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.",
|
||||
},
|
||||
{
|
||||
displayName: 'Domain',
|
||||
|
|
|
@ -555,7 +555,7 @@ export const userFields: INodeProperties[] = [
|
|||
type: 'string',
|
||||
default: '',
|
||||
description:
|
||||
"The unique ID for the customer's G Suite account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.",
|
||||
"The unique ID for the customer's Google Workspace account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.",
|
||||
},
|
||||
{
|
||||
displayName: 'Domain',
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
Loading…
Reference in a new issue