Skip to content

Commit

Permalink
GHA (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackEblan committed Aug 27, 2024
1 parent d0d174d commit f4cca35
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ jobs:
strategy:
matrix:
api-level: [ 26, 30 ]
permissions:
pull-requests: write

steps:
- name: Delete unnecessary tools 🔧
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import com.eblan.socialworkreviewer.core.model.About
import com.eblan.socialworkreviewer.core.network.firestore.AboutDataSource.Companion.ABOUTS_COLLECTION
import com.eblan.socialworkreviewer.core.network.mapper.toAbout
import com.eblan.socialworkreviewer.core.network.model.AboutDocument
import com.eblan.socialworkreviewer.core.network.model.AnnouncementDocument.Companion.DATE
import com.eblan.socialworkreviewer.core.network.model.AboutDocument.Companion.DATE
import com.google.firebase.firestore.FirebaseFirestore
import com.google.firebase.firestore.Query
import com.google.firebase.firestore.snapshots
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ data class AboutDocument(
val name: String?,
val message: String?,
val links: List<String>?,
)
) {
companion object {
const val DATE = "date"
}
}

0 comments on commit f4cca35

Please sign in to comment.