mirror of
https://github.com/Docile-Alligator/Infinity-For-Reddit.git
synced 2026-03-12 10:50:14 +00:00
View user details in ViewUserDetailActivity. Follow or unfollow user is not properly implemented right now. Change users and subscribed_users databases' schemes. Press Profile in navigation drawer to view my reddit info. Press the username in the post to view that account's info.
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package User;
|
||||
|
||||
import android.arch.lifecycle.LiveData;
|
||||
import android.arch.persistence.room.Dao;
|
||||
import android.arch.persistence.room.Insert;
|
||||
import android.arch.persistence.room.OnConflictStrategy;
|
||||
@ -8,11 +9,14 @@ import android.arch.persistence.room.Query;
|
||||
@Dao
|
||||
public interface UserDao {
|
||||
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
||||
void insert(User user);
|
||||
void insert(UserData userData);
|
||||
|
||||
@Query("DELETE FROM users")
|
||||
void deleteAllUsers();
|
||||
|
||||
@Query("SELECT * FROM users WHERE user_name = :userName LIMIT 1")
|
||||
User getUserData(String userName);
|
||||
@Query("SELECT * FROM users WHERE name = :userName LIMIT 1")
|
||||
LiveData<UserData> getUserLiveData(String userName);
|
||||
|
||||
@Query("SELECT * FROM users WHERE name = :userName LIMIT 1")
|
||||
UserData getUserData(String userName);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user