-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/accessibility
# Conflicts: # course/src/main/res/values/strings.xml
- Loading branch information
Showing
42 changed files
with
1,585 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Roadmap project entry | ||
about: Add roadmap entry to the project | ||
title: '[Mobile] [Android] Roadmap project name' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Goal | ||
Describe the goal for this project | ||
|
||
**Slack:** #wg-product-mobile | ||
**Requirement Definition:** add Confluence project page link (or external public documentation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
core/src/main/java/org/openedx/core/data/model/CourseDateBlock.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package org.openedx.core.data.model | ||
|
||
import com.google.gson.annotations.SerializedName | ||
import java.util.* | ||
|
||
data class CourseDateBlock( | ||
@SerializedName("complete") | ||
val complete: Boolean = false, | ||
@SerializedName("date") | ||
val date: String = "", // ISO 8601 compliant format | ||
@SerializedName("assignment_type") | ||
val assignmentType: String? = "", | ||
@SerializedName("date_type") | ||
val dateType: DateType = DateType.NONE, | ||
@SerializedName("description") | ||
val description: String = "", | ||
@SerializedName("learner_has_access") | ||
val learnerHasAccess: Boolean = false, | ||
@SerializedName("link") | ||
val link: String = "", | ||
@SerializedName("link_text") | ||
val linkText: String = "", | ||
@SerializedName("title") | ||
val title: String = "", | ||
// component blockId in-case of navigating inside the app for component available in mobile | ||
@SerializedName("first_component_block_id") | ||
val blockId: String = "", | ||
) |
Oops, something went wrong.