Skip to content

Commit

Permalink
Merge branch 'issue-6315' of https://github.com/nanddeepn/cli-microso…
Browse files Browse the repository at this point in the history
…ft365 into issue-6315
  • Loading branch information
nanddeepn committed Nov 25, 2024
2 parents ec939d9 + 2325775 commit c6215a7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ m365 entra administrativeunit list [options]
: Comma-separated list of properties to retrieve.
```

```md definition-list
`-p, --properties [properties]`
: Comma-separated list of properties to retrieve.
```

<Global />

## Remarks
Expand Down
7 changes: 7 additions & 0 deletions src/m365/entra/commands/app/app-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ class EntraAppListCommand extends GraphCommand {
this.#initOptions();
}

constructor() {

Check failure on line 32 in src/m365/entra/commands/app/app-list.ts

View workflow job for this annotation

GitHub Actions / build (macos-latest, 20)

Multiple constructor implementations are not allowed.

Check failure on line 32 in src/m365/entra/commands/app/app-list.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 20)

Multiple constructor implementations are not allowed.
super();

this.#initTelemetry();
this.#initOptions();
}

public alias(): string[] | undefined {
return [aadCommands.APP_LIST, commands.APPREGISTRATION_LIST];

Check failure on line 40 in src/m365/entra/commands/app/app-list.ts

View workflow job for this annotation

GitHub Actions / build (macos-latest, 20)

Cannot find name 'aadCommands'. Did you mean 'commands'?

Check failure on line 40 in src/m365/entra/commands/app/app-list.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 20)

Cannot find name 'aadCommands'. Did you mean 'commands'?
}
Expand Down

0 comments on commit c6215a7

Please sign in to comment.