mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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 {
|
export class GSuiteAdminOAuth2Api implements ICredentialType {
|
||||||
name = 'gSuiteAdminOAuth2Api';
|
name = 'gSuiteAdminOAuth2Api';
|
||||||
extends = ['googleOAuth2Api'];
|
extends = ['googleOAuth2Api'];
|
||||||
displayName = 'G Suite Admin OAuth2 API';
|
displayName = 'Google Workspace Admin OAuth2 API';
|
||||||
documentationUrl = 'google';
|
documentationUrl = 'google';
|
||||||
properties: INodeProperties[] = [
|
properties: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,16 +18,16 @@ import { groupFields, groupOperations } from './GroupDescripion';
|
||||||
|
|
||||||
export class GSuiteAdmin implements INodeType {
|
export class GSuiteAdmin implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'G Suite Admin',
|
displayName: 'Google Workspace Admin',
|
||||||
name: 'gSuiteAdmin',
|
name: 'gSuiteAdmin',
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
// 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'],
|
group: ['input'],
|
||||||
version: 1,
|
version: 1,
|
||||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
description: 'Consume G Suite Admin API',
|
description: 'Consume Google Workspace Admin API',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'G Suite Admin',
|
name: 'Google Workspace Admin',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
|
|
|
@ -186,7 +186,7 @@ export const groupFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description:
|
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',
|
displayName: 'Domain',
|
||||||
|
|
|
@ -555,7 +555,7 @@ export const userFields: INodeProperties[] = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description:
|
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',
|
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