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

Communication: Code of conduct #17

Merged
merged 7 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ In Project Settings, on the tab "Package Dependencies", click "+" and add <https
1. Add a dependency in Package.swift:
```swift
dependencies: [
.package(url: "https://github.com/ls1intum/artemis-ios-core-modules", .upToNextMajor(from: "2.3.6")),
.package(url: "https://github.com/ls1intum/artemis-ios-core-modules", .upToNextMajor(from: "3.5.0")),
]
```

Expand Down Expand Up @@ -118,4 +118,4 @@ A navigation bar menu, integrated across all clients, facilitates the detail vie
The Push Notifications subsystem manages all aspects related to push notifications.
It encompasses the push notification setup user interface and the notification settings interface.
Further, it includes handlers for the decryption and deep-linking of notifications.
The User Session Store securely stores encryption keys. Currently, the `App` exclusively utilizes this subsystem.
The User Session Store securely stores encryption keys. Currently, the `App` exclusively utilizes this subsystem.
1 change: 1 addition & 0 deletions Sources/Login/Views/InstitutionSelectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ private struct CustomInstanceCell: View {

TextField(R.string.localizable.account_select_artemis_instance_custom_instance(), text: $customUrl)
.textFieldStyle(ArtemisTextField())
.keyboardType(.URL)
nityanandaz marked this conversation as resolved.
Show resolved Hide resolved
.background(Color.gray.opacity(0.2))
Button(R.string.localizable.select()) {
guard let url = URL(string: customUrl) else {
Expand Down
1 change: 1 addition & 0 deletions Sources/SharedModels/Course.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public struct Course: Codable, Identifiable {
public var lectures: [Lecture]?
public var accuracyOfScores: Int?
public var courseInformationSharingConfiguration: CourseInformationSharingConfiguration
public var courseInformationSharingMessagingCodeOfConduct: String? = ""
public var instructorGroupName: String?
public var editorGroupName: String?
public var teachingAssistantGroupName: String?
Expand Down