Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add nested authentication input data #10

Merged
merged 1 commit into from
Aug 23, 2022
Merged

Conversation

tmetzke
Copy link
Member

@tmetzke tmetzke commented Aug 23, 2022

Description

closes #9

@tmetzke tmetzke requested a review from a team August 23, 2022 14:27
@tmetzke tmetzke self-assigned this Aug 23, 2022
@tmetzke tmetzke requested review from nikku and akulminskyi and removed request for a team August 23, 2022 14:27
Copy link
Member

@nikku nikku left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that should make some peoples lifes easier 👏

@nikku nikku merged commit fd45374 into main Aug 23, 2022
@nikku nikku deleted the 9-nested-input-data branch August 23, 2022 14:52
Copy link
Contributor

@igpetrov igpetrov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thank you.


@Override
public boolean equals(Object obj) {
if (this == obj) return true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's strange that auto-formatter doesn't catch such things. According to the Google Style Guide braces are always used

Suggested change
if (this == obj) return true;
if (this == obj) {
return true;
}

@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (obj == null) return false;
if (obj == null) {
return false;
}

public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (getClass() != obj.getClass()) return false;
if (getClass() != obj.getClass()) {
return false;
}

@@ -51,12 +49,12 @@ public boolean equals(Object obj) {
if (obj == null) return false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (obj == null) return false;
if (obj == null) {
return false;
}

@@ -51,12 +49,12 @@ public boolean equals(Object obj) {
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (getClass() != obj.getClass()) return false;
if (getClass() != obj.getClass()) {
return false;
}

@@ -41,13 +41,28 @@
}
},
{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: I am wondering, whether template should also contain one dynamic variable example?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could add a separate template with optional authentication to showcase this.

@nikku
Copy link
Member

nikku commented Aug 23, 2022

@igpetrov My bad for merging this early.

@igpetrov
Copy link
Contributor

@igpetrov My bad for merging this early.

No worries, those comments were minor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add nested input data example
3 participants