Skip to content
#

jhipster

Here are 319 public repositories matching this topic...

mrts
mrts commented Aug 29, 2019
Overview of the feature request

Use async/await instead of promises for more succinct code.

For example, instead of the following JHipster-generated code

    this.rideService()
      .retrieve(paginationQuery)
      .then(
        res => {
          this.rides = res.data;
          this.totalItems = Number(res.headers['x-total-count']);
          this.queryCount = t
pvliss
pvliss commented Jun 14, 2019

Overview of the issue

Convert usage of Java's Optional to the Kotlin built-in null safety features.

Motivation for or Use Case

As the bulk of the Java code is now migrated to Kotlin we can start fully migrating to Kotlin using more of its built-in features. This might seem as it should have been done already but it was intentionally left out to ease the process of migration(#85) and m

Improve this page

Add a description, image, and links to the jhipster topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jhipster topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.